... in order to call the web services in your app you need to be online anyway, during development too. there is nothing preventing you from getting an app id...
hi, i'm trying to access the ListMessages web service with SOAP and C#, with the code visual studio generates from the WSDL file. i'm following the C# example,...
This is probably a basic question, but in the documentation where is says: "make a request to the URL https://api.login.yahoo.com/WSLogin/V1/wspwtoken_login...
... You have to set the "fid" parameter, using the folder ID you get back in ListFolders. In addition, you'll also need to set startMid/ startInfo and...
Hi, Â Is there any way to read message from Yahoo! mail. Any API. Plz reply. Thanks & regards Amitava Hi, Is there any way to read message from Yahoo! mail....
... Specify startInfo and numInfo instead of startMid and numMid. By specifying num/startMid you're asking the web service to just return you a sequence of...
... You can send them as URL query parameters, i.e.: https://api.login.yahoo.com/WSLogin/V1/wspwtoken_login?appid=foo&ts=1224010680&token=bar&sig=baz -- Ryan...
... I'm sorry, but I don't get any MessageInfo's or Mid's (in the mid return parameter) either way. The following code also returns null at messageInfo: ...
... BTW, the documentation for ListMessages is wrong. the fid parameter is string and not Fid (at least, that's the code VS generated from the WSDL). this may...
... Are you sure that the folder you're querying has messages in it? This is how I would code it: ListMessages param = new ListMessages(); param.fid = fid.fid;...
... OK, that worked. It seems like the web service doesn't like getting UInt64.MaxValue as numInfo. When sending it the FolderData.total for that folder it...
The MessageInfo objects returned by ListMessages returns only the name of the destination address (the To: field) of the message, and not the address. It would...
When I set the filterBy parameter of ListMessages to a Flag object, how are the flags in the object treated? Do I get messages that comply with all the flags...
... The ListMessagesResponse object has a "folder" property that should contain a FolderData object. You can use that. -- Ryan Kennedy Technical Yahoo! ...
The EmptyFolder method documentation says that the method receives a Fid object as a parameter. However, the WSDL suggests that it receives a string, which is...
The ListMessages method returns, among other things, a list of MessageInfo objects. each such object has a member named receivedDate, which gives the message's...
... It's unix time, i.e. the number of seconds since the epoch: http://en.wikipedia.org/wiki/Unix_time "The Unix epoch is the time 00:00:00 UTC on January 1,...
... thanks. that example actually has a bug, because the new date is returned from the DateTime.AddSeconds() method, and not added to the same instance (the...
... BBAuth? ... Hi Look for Oauth with client application support early next year. Oauth will make authenticating Flash/Actionscript much more secure....
Hi there, I keep getting "Network Error" exceptions from Yahoo while calling auth.UpdateCredentials() This happened since 2 days ago, before that, everything...
... Yes, it's little known side effect, however changing your password will invalidate any outstanding BBAuth tokens that you may have. -- Ryan Kennedy ...
... Thanks for reply, Ryan Anything I can do to get it back? I had tried to restore my YahooMail password but still got the same error. I even re-get new DevID...
Hi, Using BBAuth, is there any way for the following: 1) To login from a desktop client, which donot have any server and permanent IP address. 2) To log off...
... You need to get a new token. The user (yourself) will have to go back through the authorization flow where they log in and grant access to the application....
... You'll have to use a browser to do the authorization. The browser would have to hit your public web server to do the authorization step. Afterwards, you...