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)
link|improve this question
It's funny (or sad) that this is the first Google hit for "GDataService GDclient", that's how I landed here. I completely feel your pain. The documentation is, to put it gently, lacking and confusing. I've been trying to get the damn thing working for the past few days without success so far, any useful answer will be very much appreciated. – gsakkis Jan 25 at 8:20
feedback

1 Answer

up vote 5 down vote accepted

I haven't done it in django, but I did patch OpenID using Google exclusively into a Pylons project. I just used Python OpenID. Its been a few months since I set that up, but I seem to remember the Google Documentation and the Documentation for the OpenID package to be reasonable to get me through it, although it took quite a bit to get over a few of the hurdles. If I remember correctly, the biggest problem was getting Google to give me back the data I wanted, which was in setting up the AX Requests properly.

In the model I was using, you set up the Authentication request, present a link to the user, and it calls back to your page. The consumer object from the OpenID package was able to take the redirect from Google and parse it just fine then.

Can you be a little more specific about what is going on? You mention that the request token was empty, which I handle by assuming an issue with the authentication. Are you getting no response at all?

link|improve this answer
Thanks for responding. Yes thats correct I get don't get any response at all. I edited my question to contain a sample of what I'm doing. The "request_token" always comes back empty. I can push forward with the rest of the process by building the authorization url but that gets me nowhere without that initial request token. – ReBoot Jan 21 at 19:37
It looks like something to do with the gdata package then. I'm not familiar with it, but they have some source in the Samples directory that shows "a" way to do OAuth. Does that work for you? It looks like they used gdata.docs.service.DocsService() instead of gdata.docs.client.DocsClient(), but I'm not sure what the difference is. – Skolor Jan 21 at 20:00
Thanks, I decided to give GDataService another try and I have successfully authenticated with google using OAuth with the RSA-SHA1 signature. – ReBoot Jan 22 at 4:18
Awesome, good luck with your project. – Skolor Jan 22 at 18:15
feedback

Your Answer

 
or
required, but never shown

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