Open Decipher opened 2 years ago
Is your feature request related to a problem? Please describe. As a user I want to see a demo with working authentication.
Describe the solution you'd like
Describe alternatives you've considered
Additional context Config: authorization_code grant with PKCE support.
auth: { redirect: { callback: '/callback', logout: '/', }, strategies: { drupal: { scheme: 'oauth2', endpoints: { authorization: baseUrl + '/oauth/authorize', token: baseUrl + '/oauth/token', userInfo: baseUrl + '/oauth/userinfo', }, clientId: process.env.OAUTH_CLIENT_ID, responseType: 'code', grantType: 'authorization_code', codeChallengeMethod: 'S256', }, }, },
Is your feature request related to a problem? Please describe. As a user I want to see a demo with working authentication.
Describe the solution you'd like
Describe alternatives you've considered
Additional context Config: authorization_code grant with PKCE support.