- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我创建了一个 ASP.NET Core 3 React 项目,但一直收到此错误。
Unhandled Rejection (Error): Could not load settings for 'WebPortal'
GET https://localhost:44367/_configuration/WebPortal 401
Uncaught (in promise) Error: Could not load settings for 'WebPortal'
at AuthorizeService.ensureUserManagerInitialized (AuthorizeService.js:184)
at async AuthorizeService.getUser (AuthorizeService.js:24)
at async AuthorizeService.isAuthenticated (AuthorizeService.js:15)
at async Promise.all (index 0)
at async LoginMenu.populateState (LoginMenu.js:26)
这是弹出的错误(AuthorizeService.js
):
async ensureUserManagerInitialized() {
if (this.userManager !== undefined) {
return;
}
let response = await fetch(ApplicationPaths.ApiAuthorizationClientConfigurationUrl);
if (!response.ok) {
throw new Error('Could not load settings for '${ApplicationName}');
}
let settings = await response.json();
settings.automaticSilentRenew = true;
settings.includeIdTokenInSilentRenew = true;
settings.userStore = new WebStorageStateStore({
prefix: ApplicationName
});
this.userManager = new UserManager(settings);
this.userManager.events.addUserSignedOut(async () => {
await this.userManager.removeUser();
this.updateState(undefined);
});
}
我的ApiAuthorizationConstants.js
文件:
export const ApplicationName = 'WebPortal';
export const QueryParameterNames = {
ReturnUrl: 'returnUrl',
Message: 'message'
};
export const LogoutActions = {
LogoutCallback: 'logout-callback',
Logout: 'logout',
LoggedOut: 'logged-out'
};
export const LoginActions = {
Login: 'login',
LoginCallback: 'login-callback',
LoginFailed: 'login-failed',
Profile: 'profile',
Register: 'register'
};
const prefix = '/authentication';
export const ApplicationPaths = {
DefaultLoginRedirectPath: '/',
ApiAuthorizationClientConfigurationUrl: '/_configuration/${ApplicationName}',
ApiAuthorizationPrefix: prefix,
Login: '${prefix}/${LoginActions.Login}',
LoginFailed: '${prefix}/${LoginActions.LoginFailed}',
LoginCallback: '${prefix}/${LoginActions.LoginCallback}',
Register: '${prefix}/${LoginActions.Register}',
Profile: '${prefix}/${LoginActions.Profile}',
LogOut: '${prefix}/${LogoutActions.Logout}',
LoggedOut: '${prefix}/${LogoutActions.LoggedOut}',
LogOutCallback: '${prefix}/${LogoutActions.LogoutCallback}',
IdentityRegisterPath: '/Identity/Account/Register',
IdentityManagePath: '/Identity/Account/Manage'
};
在控制台中,我看到:
有人可以帮助我吗?
最佳答案
根据@Woodz和@Jack的评论,我调查了问题并找出了问题所在。问题是主页需要授权。我将在这里发布我的解决方案,它可能会对某人有所帮助。
问题原因
在我的 Startup.cs 类中,我为所有 Controller 启用了授权。请参阅下面的代码,
services.AddMvc(options => {
//**************Add General Policy *********************
//User need to be a Authorized system user to access pages except allowAnonymous annotation
var generalPolicy = new AuthorizationPolicyBuilder()
.RequireAuthenticatedUser()
.Build();
options.Filters.Add(new AuthorizeFilter(generalPolicy));
options.Filters.Add(new AutoValidateAntiforgeryTokenAttribute());
})
解决方案
在OidcConfigurationController.cs中更改授权(添加AllowAnonymous注释)。
[AllowAnonymous]
public class OidcConfigurationController : Controller
{
private readonly ILogger<OidcConfigurationController> _logger;
public OidcConfigurationController(IClientRequestParametersProvider
clientRequestParametersProvider, ILogger<OidcConfigurationController>
logger)
{
ClientRequestParametersProvider = clientRequestParametersProvider;
_logger = logger;
}
public IClientRequestParametersProvider ClientRequestParametersProvider
{ get; }
[HttpGet("_configuration/{clientId}")]
public IActionResult GetClientRequestParameters([FromRoute]string clientId)
{
var parameters =
ClientRequestParametersProvider.GetClientParameters(HttpContext,
clientId);
return Ok(parameters);
}
}
关于asp.net - 未处理的拒绝(错误): Could not load settings for 'WebPortal' - ASP. NET Core React,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60107195/
我创建了一个 ASP.NET Core 3 React 项目,但一直收到此错误。 Unhandled Rejection (Error): Could not load settings for 'W
Webports 在 ports 目录中拥有 Python 项目和多个 Python 模块,包括 NumPy。 “python”端口编译一个在控制台窗口中运行 Python 解释器的 Chrome 应
我是一名优秀的程序员,十分优秀!