Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd love to write a plugin to monitor my Spam folder in Gmail, and perform various functions (like delete anything with the word Pfizer in it!). I have a bunch of other ideas too for our Google Apps domain.

So, is there a Gmail API? Ideally I'd have a web service could connect to my Gmail server, with the correct authentication, and have access to my data allowing me to Create/Read/Upadte/Delete Gmail messages.

I couldn't see anything obvious that gave me the access I wanted, so hopefully someone here knows how.

Cheers, Shane

p.s. I can code any any language you like, so please don't worry about which language makes sense.

share|improve this question

3 Answers

up vote 15 down vote accepted

Also this: http://code.google.com/apis/gmail/gadgets/contextual/

share|improve this answer
Awesome, thanks! :D – Shane Nov 21 '10 at 4:09

The API for accessing your Gmail messages is IMAP. There are plenty of IMAP client libraries around.

For authentication check Google's documentation: http://code.google.com/apis/gmail/oauth/

share|improve this answer
Perfect, thank you :) – Shane May 12 '10 at 23:09

You should google for it first. :) I'm not sure about WS but you can easily write a desktop app (I tried that in java) - mail client - for that purpose. There's such thing as g4j

share|improve this answer
Actually I did search around, but I couldn't find a specific Google API. Thanks for the reference anyway, but now I know I can use IMAP, it'd a done deal. – Shane May 12 '10 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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