From c6850a7c93c99cfc988f00729310b367c91372bc Mon Sep 17 00:00:00 2001 From: franciscomdrito <62572390+franciscomdrito@users.noreply.github.com> Date: Mon, 3 May 2021 10:08:57 +0100 Subject: [PATCH] fix: auth0 silentRefresh requires offline_acces scope (#644) --- src/app/core/identity-provider/auth0.identity-provider.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/core/identity-provider/auth0.identity-provider.ts b/src/app/core/identity-provider/auth0.identity-provider.ts index 9f1df32811..e7b534894e 100644 --- a/src/app/core/identity-provider/auth0.identity-provider.ts +++ b/src/app/core/identity-provider/auth0.identity-provider.ts @@ -66,7 +66,7 @@ export class Auth0IdentityProvider implements IdentityProvider { // Scopes ("rights") the Angular application wants get delegated // https://openid.net/specs/openid-connect-core-1_0.html#StandardClaims - scope: 'openid email profile', + scope: 'openid email profile offline_access', // Using Authorization Code Flow // (PKCE is activated by default for authorization code flow)