Skip to content

Commit

Permalink
fix: auth0 silentRefresh requires offline_acces scope (#644)
Browse files Browse the repository at this point in the history
  • Loading branch information
franciscomdrito authored May 3, 2021
1 parent e5138e4 commit c6850a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/core/identity-provider/auth0.identity-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c6850a7

Please sign in to comment.