我不确定如何在成功完成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
感谢。