My task is to write IMAP e-mail client for Gmail. So far I know client should authenticate through OAuth (there's also a java library for IMAP auth by Google). But I'd like to set user free from any password typing.

Android provides a cool 'native' way to gain authToken for google account services via AccountManager. But I wonder how to use authToken and what is it for? Is it only for GAE authentication?

Is there any way to get oauthToken and oauthTokenSecret without browser (via AccountManager)?

link|improve this question

Check out this talk from Google IO 2011. There's a pretty good user-experience for newer Android devices using the AccountManager described. – David Caunt Jul 11 '11 at 11:29
Thanks! But I've already looked through this library and found there's no gmail interaction in Google API. Sad but true, I have to use IMAP. Or do I miss something? – Aleksey Malevaniy Jul 11 '11 at 11:44
I don't know for certain, but I'm sure GMail can be accessed via OAuth. I'm using Chrome extensions which can do so. – David Caunt Jul 11 '11 at 15:27
OAuth? Certainly. The point was to use Account getAuthToken method and provided authToken for OAuth. But for Gmail it's seems to be impossible. – Aleksey Malevaniy Jul 11 '11 at 18:53
I am able to get the auth token using the url oauth2:mail.google.com but i am not able to figure out how to use this token with javamail. – Hemanshu Bhojak Dec 28 '11 at 7:35
show 1 more comment
feedback

1 Answer

Have you tried using "oauth2:https://mail.google.com/" as the "auth token type" (authTokenType parameter) when calling AccountManager.getAutToken() ?

According what is said at 46:50 in the talk you mentioned, it should work.

By the way, this page describes how to get an OAuth2 token for Google Tasks, and it has a link to a code sample. It also makes it sounds like it is just a matter of providing the right authTokenType parameter.

link|improve this answer
It should work and it works! But only for ClientLogin library. Right? When there are many reasons why Android client app should get OAuth tokens, not those which AccountManager provides. And WebView seems to be the only way... Thanks for your answer! – Aleksey Malevaniy Dec 2 '11 at 9:45
If you use the authTokenType provided in the examples, the token given by AccountManager should be an OAuth token. I must admit that I haven't tried it myself yet, but the last code sample seems explicit about this (the token returned by the AccountManager is used with a oauth2.draft10.GoogleAccessProtectedResource ). – unBrice Dec 2 '11 at 13:19
WoW! Thanks for a comment — I'll try and test token from AccountManager this weekend. – Aleksey Malevaniy Dec 2 '11 at 17:11
After getting the token how to set the same in imap while fetching messages or while connecting? – Hemanshu Bhojak Dec 27 '11 at 13:29
feedback

Your Answer

 
or
required, but never shown

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