Using Gmail Api with Iphone
I am creating an app that needs to connect to 开发者_开发知识库the Gmail server and fetch the inbox emails and sort them out and store them in core data modal. I have no idea on how I could integrate this gmail into my app. Is there api available in Gmail, that would work with NSURLConnection.
Consider using POP or IMAP?
Gmail offers RSS feeds for Inboxes http://mail.google.com/support/bin/answer.py?answer=18218
I don't think there's a Gmail API.
I found something that lets me read the email in the form of atom feed, requesting to the following url could fetch my email in XML format :
https://USERNAME:PASSWORD@gmail.google.com/gmail/feed/atom
Thank you for your suggestion. Helped me lot !
There is a new Gmail API now:
https://developers.google.com/gmail/api/
精彩评论