I used the YOSSession to do OAuth and would like to use the OAuth token to read the users mail with the Yahoo! Mail API.
i.e.
Can I do something like this using the YOSSession with a YOSSession:
// initialize the profile request with our user.
YOSUserRequest *userRequest = [ YOSUserRequest requestWithSession : self . session ];
// get the users profile
[userRequest fetchUnreadEmailsWithDelegate : self ];
I made up the method 'YOSUserRequest::fetchUnreadEmailsWithDelegate' method but am wondering if it would be easy to create one.
Thanks,
Johnny