如何使用angular-oauth2-oidc获取访问令牌进行PKCE代码认证?
How to get access token using angular-oauth2-oidc for PKCE code authentication?
我正在使用 angular-oauth2-oidc 进行身份验证,但我不知道如何获取访问令牌。我在此配置中使用 PKCE 代码流
authConfig: AuthConfig = {
issuer: 'https://test.com/oauth/token',
// requireHttps: false,
redirectUri:'http://localhost:4200/',
strictDiscoveryDocumentValidation: false,
tokenEndpoint: 'https://test.com/oauth/token',
clientId: 'test',
// dummyClientSecret: 'test',
scope: 'openid',
oidc: true,
responseType: 'code',
showDebugInformation: true,
requestAccessToken: true
};
流程是用这段代码启动的,登录后它被重定向,但我无法获得任何令牌。
getAutherizationCodeWithPKCE() {
this.oauthService.configure(this.authConfig);
this.oauthService.initCodeFlow();
this.oauthService.loadDiscoveryDocumentAndTryLogin
}
问题已通过在上面的示例中发送客户端密钥得到解决
dummyClientSecret: 'test',
我正在使用似乎需要客户端密码的 Cloud Foundry 授权服务器。
然后可以使用
轻松获得访问令牌
this.oauthService.getAccessToken()
版本:
angular 13.1.2
angular-oauth2-oidc 13.0.1
cloud foundry uaa 75.11.0
我不会删除这个问题,以防将来有人遇到同样的问题。
我正在使用 angular-oauth2-oidc 进行身份验证,但我不知道如何获取访问令牌。我在此配置中使用 PKCE 代码流
authConfig: AuthConfig = {
issuer: 'https://test.com/oauth/token',
// requireHttps: false,
redirectUri:'http://localhost:4200/',
strictDiscoveryDocumentValidation: false,
tokenEndpoint: 'https://test.com/oauth/token',
clientId: 'test',
// dummyClientSecret: 'test',
scope: 'openid',
oidc: true,
responseType: 'code',
showDebugInformation: true,
requestAccessToken: true
};
流程是用这段代码启动的,登录后它被重定向,但我无法获得任何令牌。
getAutherizationCodeWithPKCE() {
this.oauthService.configure(this.authConfig);
this.oauthService.initCodeFlow();
this.oauthService.loadDiscoveryDocumentAndTryLogin
}
问题已通过在上面的示例中发送客户端密钥得到解决
dummyClientSecret: 'test',
我正在使用似乎需要客户端密码的 Cloud Foundry 授权服务器。 然后可以使用
轻松获得访问令牌this.oauthService.getAccessToken()
版本:
angular 13.1.2
angular-oauth2-oidc 13.0.1
cloud foundry uaa 75.11.0
我不会删除这个问题,以防将来有人遇到同样的问题。