使用access token
检索的refresh token
时遇到问题。我正在使用python api client
Google文档。我有离线访问模式,并将我的refresh token
存储在userconsent部分的数据库中。现在使用刷新令牌,我还可以使用requests.post检索访问令牌。现在,当我提供这样检索的访问令牌以在Flowexchange中进行身份验证时
self.flow = OAuth2WebServerFlow(CLIENT_ID, CLIENT_SECRET .... )
self.flow.step2_exchange(accesstoken)
我得到了FlowExchangeError(u'invalid_grant',)
。我缺少什么?
感谢