我正在使用带有chrome.identity.removeCachedAuthToken()的Google Oauth。我可以登录用户,但不能使用removeCachedAuthToken()注销。
_class
有没有办法清除chrome.identity插件的登录状态?
答案 0 :(得分:0)
我认为你只需要那个
chrome.identity.launchWebAuthFlow(
{ 'url': 'https://accounts.google.com/logout' },
function(tokenUrl) {
responseCallback();
}
);