我使用Client Angular2开发应用程序Web,使用IdentityServer4开发ASP.NET Core 2中的后端,最后使用身份验证服务器IdentityServer4保护webapi。 我成功地实现了后端,并且mi webapi受到保护。我的客户端Angular也受到保护,并使用在IdentityServer中配置客户端的mi客户端登录,并在密码和用户的流中设置AllowedGrantTypes。问题是令牌的生成。 我可以生成一个带有效负载和标头有效的令牌,但我没有使签名有效。 在jwt.io中,我的令牌无效,我无法使用令牌访问用户信息,但是使用此令牌可以访问我的webapi中的信息。 什么是问题?如何修复?
我在Angular中的代码是这样的:
import { Component, OnInit } from '@angular/core';
import { OAuthService } from 'angular-oauth2-oidc';
import { JwksValidationHandler } from 'angular-oauth2-oidc';
import { authConfig } from './auth.config';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent implements OnInit {
constructor(private oAuthService: OAuthService) {
this.oAuthService.tokenEndpoint = 'http://localhost:5000/connect/token';
this.oAuthService.userinfoEndpoint = 'http://localhost:5000/connect/userinfo';
this.oAuthService.clientId = 'angular-client';
this.oAuthService.responseType = 'id_token token';
this.oAuthService.scope = 'api1';
this.oAuthService.dummyClientSecret = 'password';
}
ngOnInit(): void {
this.login();
}
login() {
this.oAuthService.fetchTokenUsingPasswordFlow('aherrera', 'password').then((resp) => {
// Loading data about the user
return this.oAuthService.loadUserProfile();
}).then(() => {
// Using the loaded user data
const claims = this.oAuthService.getIdentityClaims();
if (claims) {
// tslint:disable-next-line:no-console
console.debug('given_name');
}
});
}
}
而且,我在IdentityServer中的代码是这样的:
new Client
{
ClientId = "angular-client",
ClientName = "Angular Client",
AllowedGrantTypes = GrantTypes.ResourceOwnerPassword,
AllowAccessTokensViaBrowser = true,
EnableLocalLogin = true,
AllowedCorsOrigins =
{
"httpsd://localhost:4200",
"http://localhost:4200"
},
AllowedScopes =
{
IdentityServerConstants.StandardScopes.OpenId,
IdentityServerConstants.StandardScopes.Profile,
IdentityServerConstants.StandardScopes.Email,
"api1"
},
ClientSecrets = new List<Secret>() {
new Secret("password".Sha256())
}
},
控制台的日志是:
请帮助。
答案 0 :(得分:1)
将openid范围添加到Angular代码中:
this.oAuthService.scope = 'openid api1';
您的客户端应该使用隐式流
进行配置AllowedGrantTypes = GrantTypes.Implicit,