auth0 version: 9.3.3
I'm developing a chrome extension that uses Google Identity API. When my extension is loaded when the user is already authorized by Google, so it seams like an overhead to show the authentication popup again by the:
Auth0Js.authorize({connection:'google-auth2'})
I already have the google access_token by:
chrome.identity.getAuthToken({}, function (access_token) {...})
that looks like:
ya29.GmCGBfZPOwM725oSok08AdMLQGHYNr50Ax9TAQVoHGjEkAS1gdv-R_1H_LBd6Fe9YgEjWm8eejTYk5IyCWGrdDn6P1R8ahRQW768_SDf7nD8Yq0kj2VXoBZVNYyiIDWtFP0
but I still need the auth0 token. Is there a way to silently exchange a google access_token into an auth0 access_token?