I’m trying to enable refresh tokens using the SPA SDK, but running into errors.
I have enabled tokens in the app settings.
I have setup the Auth0Client
new Auth0Client({
domain: config.auth0.domain,
clientId: config.auth0.clientId,
cacheLocation: 'localstorage', // tried with and without this
useRefreshTokens: true,
authorizationParams: {
redirect_uri: `${window.location.protocol}//${window.location.host}`,
scope: config.auth0.scope, // tried with and without this
},
})
I have tried with and without “scope” on the client.authorizationParams, as well as with and without “scope” on the getTokenSilently() and loginWithRedirect() calls.
It always results in an error after redirecting back from the Universal login page
Error: Missing Refresh Token (audience: 'MY_AUDIENCE', scope: 'openid profile email offline_access')