Here is what I'm trying to do:
I want to be able to finish the "OAuth token dance" and gain an access token so I can then use that to connect to googles IMAP api for a user.
Here are my problems:
I feel like I've tried almost everything. I've tried using the GDClient, GDataService, and Django Social Auth OAuth clients but I still come up empty. I've ran into scenarios where google would build the authorization url but the initial request token returns empty, preventing me from being able to gain an access token (that happened while I was using the GDataClient).
Here is what I would like to have:
A complete resource/tutorial/sample of how to gain an access token from google using OAuth or OAuth2.0. I'm pretty sure I can work the IMAP API out on my own. I am using the django framework, but I'm willing to switch from that if there is a better option.
Note: google does have good information in their documentation but i feel like it is too scrambled at the moment. I found myself mixing OAuth and OAuth2.0 because of it.
Any help is greatly appreciated. I will personally consider anyone who has pulled off google authentication using OAuth or OAuth2.0 awesome, because you would have to be if you used the documentation I have come across.
Sample
def index(request):
scopes = ['https://docs.google.com/feeds/','https://www.google.com/calendar/feeds/']
client = gdata.docs.client.DocsClient(source='Trinity-EmailManager-v1')
client.ssl = True
client.http_client.debug = True
oauth_callback_url = settings.GOOGLE_CALLBACK_URL
request_token = client.GetOAuthToken(
scopes, oauth_callback_url, settings.GOOGLE_CONSUMER_KEY, consumer_secret=settings.GOOGLE_CONSUMER_SECRET)
return HttpResponse(request_token)