Angular oauth2-oidc - What part of the configuration retrieves the token and where does it store it?
问题 I'm trying to use the library angular-oauth2-oidc in my application. This is my AuthConfig const adsfUrl = 'https://xxxx.xxxxx.xxx/adfs'; export const ADSF_AUTH_CONFIG: AuthConfig = { redirectUri: window.location.origin, clientId: 'debdb149-65c3-4ac7-99c5-acbfa59f66d0', requireHttps: false, loginUrl: adsfUrl + '/oauth2/authorize', issuer: adsfUrl, scope: 'openid profile email', responseType: 'id_token token', oidc: true, logoutUrl: adsfUrl + '/ls/?wa=wsignoutcleanup1.0&wreply=' + location