标签: javascript google-drive-api google-oauth
我已为Google Drive API设置了网络身份验证。我使用了教程here,我可以成功上传和下载文件。但是,我不能在API中找到有关如何撤销身份验证的参考(我想为我的用户提供选项)。 我在SO上发现了这个:gapi.auth.signOut()但它没有删除auth,也没有在控制台中出错。是否没有gapi.auth方法来删除令牌?
gapi.auth.signOut()
答案 0 :(得分:0)
要撤消令牌,您可以对以下内容进行REST调用:
https://accounts.google.com/o/oauth2/revoke
并将令牌包含为参数:
curl https://accounts.google.com/o/oauth2/revoke?token= {token}
Google reference