我正在使用angular-oauth2-oidc
库连接到 ADFS,但出现以下错误:
我正在使用以下代码:
app.component.ts:
config.issuer = 'https://myserver/adfs';
config.clientId = 'https://myapp/';
config.redirectUri = window.location.origin;
config.scope = 'openid profile';
this.oauthService.configure(config);
this.oauthService.loadDiscoveryDocument();