如何注销chrome.identity oauth2.0令牌

时间:2018-04-02 09:59:26

标签: javascript google-chrome-extension oauth-2.0

我正在使用带有chrome.identity.removeCachedAuthToken()的Google Oauth。我可以登录用户,但不能使用removeCachedAuthToken()注销。

_class

有没有办法清除chrome.identity插件的登录状态?

1 个答案:

答案 0 :(得分:0)

我认为你只需要那个

chrome.identity.launchWebAuthFlow(
{ 'url': 'https://accounts.google.com/logout' },
function(tokenUrl) {
    responseCallback();
}

);