在GAE上用openidconnect实现googleconnect

2024-04-19 23:59:26 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在尝试编写一个基本的GAE应用程序来测试OpenId连接。它失败,日志中出现错误:对people().get()执行“权限不足”。似乎这个程序要求的是OpenId凭证,而不是OAuth(在登录页面url中有一个重定向到https://accounts.google.com/o/openid2/auth)。但这是含蓄的。如何显式地请求OAuth?它很奇怪decorator.has_凭证()使用这些openId凭据返回True。。。在

import logging
import webapp2
from apiclient.discovery import build
from oauth2client.appengine import OAuth2Decorator
from google.appengine.api import users

decorator = OAuth2Decorator(
  client_id='123456789999.....googleusercontent.com',
  client_secret='ABCDEF.........',
  scope=['https://www.googleapis.com/auth/plus.login'])


service = build('plus', 'v1')

class MainHandler(webapp2.RequestHandler):

  @decorator.oauth_aware
  def get(self):
    if decorator.has_credentials():
        response =service.people().get(userId="me").execute(http=decorator.http())
        # Write the profile data
        self.response.write(unicode(response))
    else:
        url = decorator.authorize_url()
        # Write a page explaining why authorization is needed,
        # and provide the user with a link to the url to proceed.
        # When the user authorizes, they get redirected back to this path,
        # and has_credentials() returns True.
        self.response.write('You must login : <a href="'+url+'">Go</a>')


app = webapp2.WSGIApplication([
                           ('/', MainHandler),
                           (decorator.callback_path, decorator.callback_handler())],
                          debug=True)

Tags: thetofromimportselfcomtrueurl