auth0 版本:9.3.3
我正在开发一个使用 Google Identity API 的 chrome 扩展。当用户已获得 Google 授权时加载我的扩展程序时,通过以下方式再次显示身份验证弹出窗口似乎是一种开销:
Auth0Js.authorize({connection:'google-auth2'})
我已经通过以下方式获得了 google access_token:
chrome.identity.getAuthToken({}, function (access_token) {...})
看起来像:
ya29.GmCGBfZPOwM725oSok08AdMLQGHYNr50Ax9TAQVoHGjEkAS1gdv-R_1H_LBd6Fe9YgEjWm8eejTYk5IyCWGrdDn6P1R8ahRQW768_SDf7nD8Yq0kj2VXoBZVNYyiIDWtFP0
但我仍然需要 auth0 令牌。有没有办法默默地将 google access_token 交换成 auth0 access_token?