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