Search the web
Sign In
New User? Sign Up
ydn-mail · Yahoo! Mail Developer Community
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 261 - 290 of 651   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
261
... ID, ... message ... I ... making ... Fri ... I haven't heard any responses on this and have not been able to get this to work. Has anyone been able to get...
paultackett
Offline Send Email
Aug 2, 2007
8:20 pm
262
does upload api expect user upload the attachment from a browser interface only or a server side submission only? If i have a form, i can do method post, setup...
mp4mail
Offline Send Email
Aug 2, 2007
8:29 pm
263
... Paul: you need to do it like a normal file upload. Attachment uploading isn't handled via the standard RPC (SOAP or JSON-RPC) interface. ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 13, 2007
6:14 pm
264
... get ... http://developer.yahoo.com/mail/docs/html/wwhelp/wwhimpl/common/html/w whelp.htm?context=yMail&file=UploadAttachment.26.1.html ... Ryan, I...
paultackett
Offline Send Email
Aug 13, 2007
9:01 pm
265
... I don't think this is doing what you think it's doing: 1) I'm not sure if cURL will upload from a URL. 2) Uploading a file using cURL requires you to put...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 13, 2007
9:24 pm
266
... of ... it ... lack ... Yes, that was the problem. I am now able to get the ID so that I can send a message. When I do this, I have another problem....
paultackett
Offline Send Email
Aug 14, 2007
8:10 pm
267
... Ah...so close. ;) http://developer.yahoo.com/mail/docs/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=yMail&file=DataTypes.27.1.html#1572777 Try...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 14, 2007
8:25 pm
268
... (45) "uploadfile://c9ad65400d9af577d17425f0c48e40c6" ... http://developer.yahoo.com/mail/docs/html/wwhelp/wwhimpl/common/html/w ...
paultackett
Offline Send Email
Aug 15, 2007
3:23 pm
269
Hi , I was trying to develop a Yahoo mail widget for my site. I started working with the sample code for PHP4. I am getting the following error."Error from...
m_sony80
Offline Send Email
Aug 30, 2007
3:45 pm
270
... All methods take only one parameter, an object. It's an artifact of the multi-endpoint nature of the API...a bit of the SOAP bleeding into the JSON-RPC if...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 30, 2007
4:05 pm
271
Thanks Ryan ! ... All methods take only one parameter, an object. It's an artifact of the multi-endpoint nature of the API...a bit of the SOAP bleeding into ...
mariya soniya
m_sony80
Offline Send Email
Aug 31, 2007
4:34 pm
272
Is there a way to update a saved message without deleting it and saving it again? I am using the SaveMessage method, and was hoping there was some way in...
Wayne
bellingham32
Offline Send Email
Aug 31, 2007
10:29 pm
273
I only user's with preimum accounts to be able to use my application that uses the Yahoo Mail Web Services, since my application uses the APIs reserved for...
Wayne
bellingham32
Offline Send Email
Aug 31, 2007
10:31 pm
274
... Have a look at the "destination" property of the SaveMessage request: ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 31, 2007
10:37 pm
275
... Look at GetUserData: http://developer.yahoo.com/mail/docs/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=yMail&file=GetUserData.13.1.html The field...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Aug 31, 2007
10:41 pm
276
In the UserFeaturePref There is a mailBoxQuota which is the user's maximum mailbox size in bytes. What is the response if the user has an unlimited size...
Wayne
bellingham32
Offline Send Email
Aug 31, 2007
11:07 pm
277
Here is the code I have got: ///////////////////////////////////////////////// SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new...
Wayne
bellingham32
Offline Send Email
Sep 1, 2007
10:15 pm
278
... What happens if you change the first line? searchRequest.startMidSpecified = true; searchRequest.startMid = 0; You're not giving the WS any indication...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 1, 2007
10:51 pm
279
SearchMessages searchRequest = new SearchMessages(); searchRequest.search = new SearchQuery(); searchRequest.search.subject = key; ...
Wayne
bellingham32
Offline Send Email
Sep 2, 2007
4:19 pm
280
... Just to follow up, I'm not ignoring this question. I'm waiting for an answer from someone internally. Ryan Kennedy Yahoo! Mail Web Service...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:36 pm
281
... Yeah, that would be good. I can have a look this evening and see what's up. Ryan Kennedy Yahoo! Mail Web Service...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:37 pm
282
Thanks to fellow Yahoo! Sam Pullara, we now have instructions for calling the Yahoo! Mail Web Service using JAX-WS for all you Java programmers: ...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
6:51 pm
283
My problems with SearchMessages and DeleteMessage Might Be An Issue with the messages I am Saving. i.e. poorly saved message can't be searched or deleted via...
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
6:57 pm
284
Ryan, I was making you the test application, and figure out the issue. It appears that if you have a subject with a colon ':' in it, that this syntax: ...
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
8:49 pm
285
Never mind, I figure out the SearchMessage issue, and the Delete might be my issue, need to investigate further. ... .........
Wayne
bellingham32
Offline Send Email
Sep 4, 2007
8:49 pm
286
... The Yahoo! Mail web UIs only let you modify messages in the "Drafts" folder. If you were to save the message there, then you'll be able to update the...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
9:25 pm
287
... An alternative to this would be to use this instead: searchRequest.search.query = "subject:\"name:value\""; That's almost an identical search. I think the...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 4, 2007
10:54 pm
288
Ryan, Thanks for the work around, I am just going to use another delimiter besides colon. I need the exact match to work with my application. However, I ...
Wayne Berry
bellingham32
Offline Send Email
Sep 4, 2007
11:44 pm
289
Ryan, Well Almost got it, however still having a little trouble. If I take the mid returned from the SearchMessage and call GetMessage right away with it, It...
Wayne
bellingham32
Offline Send Email
Sep 5, 2007
4:19 am
290
... Yeah, you've stumbled on a bit of the underlying implementation leaking through. When you call SearchMessages, the response should include a fid for the...
Ryan Kennedy
rckenned_at_...
Offline Send Email
Sep 5, 2007
4:25 am
Messages 261 - 290 of 651   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help