Google OAuth访问令牌已过期,如何获取刷新令牌

时间:2019-10-02 09:07:54

标签: android google-oauth2 drive

与Google登录后,我正在Google Drive Rest Api上将文件上传并下载到Google Drive。

我能够获得每60分钟过期一次的访问令牌,我想获得刷新访问令牌并使用以前的令牌登录,该如何实现呢?

预先感谢

1 个答案:

答案 0 :(得分:0)

使用用户登录并使用该URL发送POST请求时提供的刷新令牌

  

https://oauth2.googleapis.com/token?client_id= 您的客户ID &client_secret = 您的客户密钥&refresh_token = refresh_token &grant_type = refresh_token

     

有关更多信息,请查阅文档:   https://developers.google.com/identity/protocols/OAuth2InstalledApp#handlingresponse