I'm using Google .NET Client Library to read email on my gmail account

but things are not very clear for me

i'm trying to retrieve atom feeds with this code

FeedQuery query = new FeedQuery();
Service service = new Service("mail", "app-MailChecker-1");
service.setUserCredentials(Username, Password);
query.Uri = new Uri("https://mail.google.com/mail/feed/atom");
AtomFeed feed = service.Query(query);

it gives me simple exception telling: can't retrieve feed

My priority is to accomplish this using Google's .NET Client Library but other options will be helpful as well

additional information is that this method works for google calendar without a problem

link|improve this question
1  
I checked that already. I'll wait for Google .NET client library solution for some time. thanks anyways – MySqlError Sep 9 '11 at 11:49
feedback

1 Answer

up vote 0 down vote accepted

If you read Google's FAQ about the Google Data Protocol you'll see that it has no data API for GMail.

http://code.google.com/intl/nl-NL/apis/gdata/faq.html#GmailAtomFeed

To quote:

Does Gmail have a Data API?

No, but you can use Gmail's Atom feed with AuthSub or OAuth to request read-only access to a user's unread messages. The scope should be set to https://mail.google.com/mail/feed/atom/. An example query would be:

GET https://mail.google.com/mail/feed/atom/

If you're interested in managing your mail, Gmail also has IMAP/POP support.

I experimented with version 1.9.0.0 of the Google Data .NET Client Library myself. Don't see any references to GMail.

Here's one possible approach on how to retrieve the unread messages:

http://www.dotnetcurry.com/ShowArticle.aspx?ID=292

It's similar to what Christian suggested in his comment.

link|improve this answer
thanks you i already implemented another solution something like that (solution you provided) – MySqlError Sep 9 '11 at 12:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.