6

I have a user authorized to access their gmail through imap using OAuth2.0. I have the OAuth2.0 access token (and refresh token). But I am having trouble figuring out how to map that into an XOAUTH parameter. All the documentation for generating the XOAUTH parameter are written assuming OAuth1.0.

I can follow the sample code make this work with OAuth1.0. But my server is using OAuth2.0 for other things and I want to use the same code.

Ray
  • 98
  • 5

1 Answers1

5

From my Googling, I don't think it's currently possible to construct an XOAUTH param for IMAP using the OAuth2 access token. This is something Google really needs to add ASAP.

See http://groups.google.com/group/oauth2-dev/browse_thread/thread/c1235d5f21e7b438?pli=1

Kevin Hutchinson
  • 2,353
  • 2
  • 17
  • 10
  • 2
    Just to update this information here. It is now possible to connect to Gmail IMAP via OAuth2: https://developers.google.com/google-apps/gmail/oauth_overview – whlk Feb 03 '13 at 17:56