Hello,
I have chrome extension which is using Auth0Chrome. I authorize users using following command and options;
let options = {
scope: "openid profile email offline_access",
device: "chrome-extension"
};
new Auth0Chrome(config.auth0.domain, config.auth0.clientID)
.authenticate(options)
And I’ts returning idtoken and refresh token.
When I try to renew id token using refresh token, I only get access_token, not id_token.
I’ve tried to enable OIDC, but it didnt work too.
How can I renew id token using refresh token?