Вопрос

In my packaged app I call

chrome.identity.getAuthToken({'interactive': true }, function (token) {
    console.log('user token: ' + token);
});

but every time i enter with different google accounts it produces the same token. What could possibly go wrong here?

Это было полезно?

Решение

Chrome app identities are tied to the Google account signed into Chrome. You can change the current signed in account in Chrome settings, but I recommend you create a new Chrome profile instead.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top