Thanks for the fast response! That was helpful. I really wish there was something a little more for mail. It also looks like the feed only supplies *unread* mail.
On Nov 19, 5:44 pm, "Eric (Google)" <[EMAIL PROTECTED]> wrote: > Hi Patrick, > > Gmail has a n Atom feed that you can use: > service name -> mail > feed URL ->https://mail.google.com/mail/feed/atom > AuthSub/OAuth scope -> https://mail.google.com/mail/feed/atom > > A couple of notes: > - it doesn't work with ClientLogin! (only AuthSub and OAuth) > -https://mail.google.com/mail/feed/atomis the only feed available > - it's read-only. > - It's also not a GData feed, so the .NET library may have problems > parsing it. > > Eric > > On Nov 19, 2:05 pm, Patrick <[EMAIL PROTECTED]> wrote: > > > I’ve been able to use the GData API to get details on Calendar > > appointments for a particular user using their credentials. > > > Some sample .NET code is below: > > > Dim googleQuery As New > > Google.GData.Client.FeedQuery("http://www.google.com/calendar/feeds/" & > > Username & "@" & GoogleDomain & "/ > > private/full") > > FYI: you can always use 'default' to represent the authenticated > user:http://www.google.com/calendar/feeds/default/private/full > > > > > > > Dim googleService As New Google.GData.Client.Service("cl", "org- > > app-1") > > > googleService.setUserCredentials(Username & "@" & GoogleDomain, > > Password) > > > Dim calendarFeed As Google.GData.Client.AtomFeed = googleService.Query > > (googleQuery) > > > However, I can’t seem to find the correct URL and/or service name for > > accessing MAIL. > > > Anyone have any thoughts? Thanks!- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Apps APIs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/google-apps-apis?hl=en -~----------~----~----~----~------~----~------~--~---
