ok, I will share you a sample. is mbuthiagrg@gmail.com ok?
500 Internal server
Do you get new error logs?
hi
https://docs.abp.io/en/abp/latest/Migration-Guides/Index https://docs.abp.io/en/commercial/latest/migration-guides/index
hi
System.Net.Http.HttpRequestException: No such host is known. (api.ubxcloud.net:443)
https://support.abp.io/QA/Questions/3448#answer-5f70c8df-651b-08ba-ec76-3a053289a6f4
But after login it started throwing 500 error.
What's the error detail?
hi
Update to the latest version or add the code below to your project:
services.ConfigureApplicationCookie(options =>
{
options.ForwardDefaultSelector = ctx =>
{
string authorization = ctx.Request.Headers.Authorization;
if (!authorization.IsNullOrWhiteSpace() && authorization.StartsWith("Bearer ", StringComparison.OrdinalIgnoreCase))
{
return "Bearer";
}
return null;
};
});
hi
Have you tried the steps I mentioned above?
hi
Can you try these changes?
https://github.com/abpframework/abp/pull/13167/files
hi
Thanks, Please share the logs of the backend app.
And the above example is taken from our own module, but I want to use this logic also in Volo.CmsKit MenuContributor. How should I override it in CmsKit MenuContributor.
hi
You can remove the CmsKit MenuContributor from the AbpNavigationOptions and copy the code to your MenuContributor
Configure<AbpNavigationOptions>(options =>
{
options.MenuContributors.Remove...
});
hi
Blazor wasm will be slower than other types of applications. You may consider switching to blazor server type.
If you still have problems following Microsoft's deploy documentation, please feel free to provide feedback.