使用Python/Django实现Google API的Oauth示例

36

我正在尝试使用Python使Google API的Oauth工作。我尝试了不同的Oauth库,例如oauthoauth2djanog-oauth,但是我无法让它正常工作(包括提供的示例)。

为了调试Oauth,我使用了Google的Oauth Playground,并且我已经研究了APIOauth文档

使用某些库时我很难得到正确的签名,而使用其他库时我很难将请求令牌转换为授权令牌。如果有人能向我展示在使用上述库之一时Google API的可行示例,那将真正地帮助我。

编辑:我的初始问题没有得到任何答案,因此我添加了我的代码。这段代码没有工作的两个可能原因是:
1)Google没有授权我的请求令牌,但不确定如何检测这个问题
2)访问令牌的签名无效,但我想知道Google期望哪些Oauth参数,因为我能够在第一阶段生成正确的签名。

这是使用oauth2.py编写的,并且针对Django,因此使用了HttpResponseRedirect。

REQUEST_TOKEN_URL = 'https://www.google.com/accounts/OAuthGetRequestToken'
AUTHORIZATION_URL = 'https://www.google.com/accounts/OAuthAuthorizeToken'
ACCESS_TOKEN_URL = 'https://www.google.com/accounts/OAuthGetAccessToken'

CALLBACK = 'http://localhost:8000/mappr/mappr/oauth/' #will become real server when deployed

OAUTH_CONSUMER_KEY = 'anonymous'
OAUTH_CONSUMER_SECRET = 'anonymous'

signature_method = oauth.SignatureMethod_HMAC_SHA1()
consumer = oauth.Consumer(key=OAUTH_CONSUMER_KEY, secret=OAUTH_CONSUMER_SECRET)
client = oauth.Client(consumer)

request_token = oauth.Token('','') #hackish way to be able to access the token in different functions, I know this is bad, but I just want it to get working in the first place :)

def authorize(request):
    if request.GET == {}:
        tokens = OAuthGetRequestToken()
        return HttpResponseRedirect(AUTHORIZATION_URL + '?' + tokens)
    elif request.GET['oauth_verifier'] != '':
        oauth_token = request.GET['oauth_token']
        oauth_verifier = request.GET['oauth_verifier']
        OAuthAuthorizeToken(oauth_token)
        OAuthGetAccessToken(oauth_token, oauth_verifier)
        #I need to add a Django return object but I am still debugging other phases.

def OAuthGetRequestToken():
    print '*** OUTPUT OAuthGetRequestToken ***'
    params = {
    'oauth_consumer_key': OAUTH_CONSUMER_KEY, 
    'oauth_nonce':  oauth.generate_nonce(),
    'oauth_signature_method': 'HMAC-SHA1',
    'oauth_timestamp': int(time.time()), #The timestamp should be expressed in number of seconds after January 1, 1970 00:00:00 GMT.
    'scope': 'https://www.google.com/analytics/feeds/',
    'oauth_callback': CALLBACK,
    'oauth_version': '1.0'
    }

    # Sign the request.
    req = oauth.Request(method="GET", url=REQUEST_TOKEN_URL, parameters=params)
    req.sign_request(signature_method, consumer, None)

    tokens =client.request(req.to_url())[1]
    params = ConvertURLParamstoDictionary(tokens)
    request_token.key  = params['oauth_token']
    request_token.secret =  params['oauth_token_secret']
    return tokens

def OAuthAuthorizeToken(oauth_token):
    print '*** OUTPUT OAuthAuthorizeToken ***'
    params ={
    'oauth_token' :oauth_token,
    'hd': 'default'
    }
    req = oauth.Request(method="GET", url=AUTHORIZATION_URL, parameters=params)
    req.sign_request(signature_method, consumer, request_token)
    response =client.request(req.to_url())
    print response #for debugging purposes

def OAuthGetAccessToken(oauth_token, oauth_verifier):
    print '*** OUTPUT OAuthGetAccessToken ***'
    params = {
    'oauth_consumer_key':  OAUTH_CONSUMER_KEY,
    'oauth_token': oauth_token,
    'oauth_verifier': oauth_verifier,
    'oauth_token_secret': request_token.secret,
    'oauth_signature_method': 'HMAC-SHA1',
    'oauth_timestamp': int(time.time()),
    'oauth_nonce': oauth.generate_nonce(),
    'oauth_version': '1.0',    
    }

    req = oauth.Request(method="GET", url=ACCESS_TOKEN_URL, parameters=params)
    req.sign_request(signature_method, consumer, request_token)

    response =client.request(req.to_url())
    print response
    return req

def ConvertURLParamstoDictionary(tokens):
    params = {}
    tokens = tokens.split('&')
    for token in tokens:
        token = token.split('=')
        params[token[0]] = token[1]

    return params
6个回答

6

5
这对我有用。
def login(request):
     consumer_key    =   'blabla'
     consumer_secret =   'blabla'
     callback = request.GET['callback']
     request_token_url = 'https://api.linkedin.com/uas/oauth/requestToken'
     authorize_url =     'https://api.linkedin.com/uas/oauth/authorize'
     access_token_url =  'https://api.linkedin.com/uas/oauth/accessToken'
     consumer = oauth.Consumer(consumer_key, consumer_secret)

     if ('oauth_verifier' not in request.GET):
       client = oauth.Client(consumer)
       body = 'oauth_callback=http://shofin.com/login?callback='+callback+"&placeId="+request.GET[placeId]
       resp,content = client.request(request_token_url,"POST",headers={'Content-Type':'application/x-www-form-urlencoded'},body=body)
       request_token = dict(urlparse.parse_qsl(content))
       loginUrl = authorize_url+"?oauth_token="+request_token['oauth_token']
       cache.set(request_token['oauth_token'],request_token['oauth_token_secret'])
       return HttpResponseRedirect(loginUrl)

     elif request.GET['oauth_verifier']:
       token = oauth.Token(request.GET['oauth_token'],cache.get(request.GET['oauth_token']))
       token.set_verifier(request.GET['oauth_verifier'])
       client = oauth.Client(consumer, token)
       resp,content = client.request(access_token_url,"POST",{})
       access_token = dict(urlparse.parse_qsl(content))
       token = oauth.Token(key=access_token['oauth_token'], secret=access_token['oauth_token_secret'])

       client = oauth.Client(consumer, token)
       resp,json = client.request("http://api.linkedin.com/v1/people/~?format=json")
       return render_to_response(callback,{'placeId':request.GET['placeId'],'userId':userId,'folkId':folkId)

3

2
这可能是答案。
在调用OAuthGetRequestToken时,您需要使用consumer_secret加上一个“&”符号来签署base_string。
在调用OAuthGetAccessToken时,您需要使用consumer_secret加上一个“&”符号,再加上token_secret来签署base_string。
对于OAuthGetRequestToken,您需要使用(consumer_secret +“&”)来签署base_string, 对于OAuthGetAccessToken,您需要使用(consumer_secret +“&”+ token_secret)来签署base_string。
引用: 在PLAINTEXT和HMAC-SHA1方法中,共享秘密是Consumer Secret和Token Secret的组合。http://hueniverse.com/2008/10/beginners-guide-to-oauth-part-iii-security-architecture/

2
Tornado已经编写了适用于Google oauth的代码。在这里查看:google auth。我已经使用过它,开箱即用,效果非常好。你只需要拿出这个类并仔细地放到Django视图中即可。
PS:Tornado利用异步模块让用户返回。由于你正在使用Django,你需要依靠一些get变量来识别用户刚刚授予应用程序访问权限。

这个例子仅使用Google+ API后端代码,还是混合了客户端和后端? - Piyush aggarwal

0

据我所知,Google oauth 并不完全遵循标准,你必须在请求中额外指定你需要请求哪个服务(请参阅 Google 文档中提供的示例),否则它将无法正常工作。


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接