ASP.NET Core 6.0 SPA 템플릿 개별 인증 포함 실행 문제
ASP.NET Core 6.0의 React.js 템플릿 사용할 때 개별 사용자 계정을 포함해서 프로젝트를 만들고 실행할 때 로그인 관련 토큰이 정상 처리되지 않는 이슈가 있습니다.
해결책은 다음 링크를 참고하세요.
https://github.com/dotnet/core/blob/main/release-notes/6.0/known-issues.md#aspnet-core
builder.Services.Configure<JwtBearerOptions>(
"IdentityServerJwtBearer", o => o.Authority = "https://localhost:44411");
Comments
Comments are closed