我正在与OAuth2Decorator()
Pytgon 合作,我正处于那个阶段,我仍然不确定 App Engine 的某些事情。该文档未提供任何信息,或者我根本无法遵循它。所以:
OAuth2Decorator() 是否存储用户凭据?
OAuth2Decorator() 是否会自动检索新令牌?
考虑以下示例:
decorator = OAuth2Decorator(...)
service = build("drive", "v2")
class AppHandler(BaseHandler):
@decorator.oauth_aware
def get(self):
if decorator.has_credentials():
init = service.files().list().execute(decorator.http())
items = init['items']
context = {'data': getitems(items)}
self.render_response('index.html',**context)
else:
url = decorator.authorize_url()
self.redirect(url)