Tagged Questions
0
votes
0answers
105 views
How to Implement oAuth v2 for the Gmail Atom feed?
I am developing desktop application and i succeed to gain auth token as well as access token. But i dont know how call gmail atom service because service name 'mail' wont work here so please tell me ...
0
votes
1answer
89 views
How to count number of conversations in an email chain from Gmail atom feed
Is there a way to count the number of conversations that make up an email chain in Gmail?
The XML feed returns only one entry for an email chain consisting of multiple individual emails.
So for ...
0
votes
1answer
62 views
Paging Gmails Atom feed
I am currently working on a JS application using OAuth 2.0 to access the gmail atom feed https://mail.google.com/mail/feed/atom/ I am able to successfully sign the request, and retrieve the emails, ...
0
votes
0answers
62 views
Maximum number of emails that can be retrieved using atom feed for gmail [closed]
I want to develop an app that will return all the unread messages from an inbox/folder.
but by default, Atom feed returns only 20 mails at a time.
is there any way I can override this default setting ...
0
votes
1answer
282 views
How to get gmail inbox feed from a nested label
As specified here https://developers.google.com/google-apps/gmail/gmail_inbox_feed, I can get a feed of unread emails under a label 'work' by simply calling ...
0
votes
0answers
223 views
Getting the GMAIL atom feed from Appengine using JAVA, OAuth 2 for a Google Apps User
I am using the following code to get the GMAIL atom feed on Google Appengine. I am using the CLIENT_ID and CLIENT_SECRET generated in the Google APPS Admin Dashboard.
public void ...
1
vote
0answers
151 views
Accessing gmail atom feed when users are logged in with CAS
I am working on a liferay portal. Users are logged into the portal via a CAS sign on and this same CAS sign on also logs users into their gmail accounts (Single sign on). Passwords are not imported ...
1
vote
0answers
254 views
Getting Access token Gmail atom feed (PHP)
How can I get the access token properly in gmail atom feed. I have gone through 1-4 steps in getting the token but stuck at the last part in upgrading to access token. At the 4th step I have been ...
0
votes
1answer
3k views
C# Google.GData.Client read email
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();
...
1
vote
1answer
520 views
Using OAuth with gmail's atom feed
I am attempting to use OAuth to access gmail's atom feed in javascript in the browser (yes, I know the security risks of building an in-browser OAuth app; it's for personal use, and I'm not worried ...
0
votes
1answer
3k views
Gmail Atom feed
I have read that I can use the gmail atom feed to get mails from "inbuilt" labels created by google.
But when I try to get mails from the "read" label, using ...
2
votes
2answers
2k views
2-legged OAuth and the Gmail atom feed
We're trying to get 2-legged OAuth to work with the Gmail atom feed. We're using the Java library contributed by John Kristian, Praveen Alavilli and Dirk Balfanz. [http://oauth.net/code/] instead of ...
9
votes
2answers
2k views
How to auto log into gmail atom feed with Python?
Gmail has this sweet thing going on to get an atom feed:
def gmail_url(user, pwd):
return "https://"+str(user)+":"+str(pwd)+"@gmail.google.com/gmail/feed/atom"
Now when you do this in a ...
6
votes
6answers
10k views
Reading Atom feed of gmail account from C#
I have a project that will send an email with certain data to a gmail account. I think that it will probably be easier to read the atom feed rather than connect through pop
the url that I should be ...