我不确定如何在成功 oauth2 流后获取使用详细信息。
代码:
from oauth2client.client import OAuth2WebServerFlow
flow = OAuth2WebServerFlow(...
...
auth_uri = flow.step1_get_authorize_url()
self.redirect(str(auth_uri))
....
credentials = flow.step2_exchange(code)
# credentials prints empty string
谢谢。