0

我正在尝试使用 Google OAuth 进行身份验证,但在遵循本教程时遇到了一些麻烦。

这是我当前的设置:

    FLOW = OAuth2WebServerFlow(
        client_id='67490467925.apps.googleusercontent.com',
        client_secret='K1tkrPK97B2W16ZGY',
        scope='https://www.googleapis.com/auth/calendar',
        user_agent='Real_Hub/1.0',
        redirect_uri='http://127.0.0.1:8000/',)


    storage = Storage('calendar.dat')
    credentials = storage.get()
    if credentials is None or credentials.invalid == True:
        auth_uri = FLOW.step1_get_authorize_url()
        return auth_uri
    else:
        http = httplib2.Http()
        http = credentials.authorize(http)

        service = build(serviceName='calendar', version='v3', http=http,
                        developerKey='AIzaSyCBGjIQ2uNbThW_2oMO9P-Ufb8kc')

        return service
        #End OAUTH...

我不确定我应该放在哪里credentials = flow.step2_exchange(code)以及storage.put(credentials)如何获得“代码”变量?在 API 中,它从重定向 url 说。但我不知道如何做到这一点。

4

1 回答 1

2

您需要定义一个方法来处理来自 OAuth 提供程序的回调,然后将该回调方法映射到应用程序上的 url,例如

  http://yourserver/auth_callback

然后在创建 Flow 类时将 设置redirect_uriauth_callbackurl

  FLOW = OAuth2WebServerFlow(
    client_id='67490467925.apps.googleusercontent.com',
    ...
    redirect_uri='http://yourserver/auth_callback')

获得 之后auth_uri,您需要将用户重定向到该 uri,以便他们可以进行身份​​验证/授权

  self.redirect(auth_uri, ...)

在身份验证/授权之后,OAuth 提供者将“回电”到您之前指定的 redirect_uri。在您的回调处理程序方法中,您现在将解析code或如果它不存在,请检查error参数

  code = self.request.get("code")
  credentials = FLOW.step2_exchange(code)

注意:我没有对此进行测试,也有一段时间没有使用 python,所以语法可能不正确,但希望你能得到大致的想法。

于 2013-07-07T22:45:32.220 回答