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.
HI
How do I chat with other users in the system? (I have registered multiple users in the system).
You can try to search for the user first.
Does the chat module use the Identity System users or its own user system?
It looks up users through the User module, but it is the Identtiy module that manages users.
How do I get the chat module to use the users who are in the system/in the current tenant?
It is under the current tenant by default,
HI
The appsettings.json
has CorsOrigins
settings, Did you add http://10.9.100.101
into it?
hi
https://community.abp.io/posts/how-to-add-custom-property-to-the-user-entity-6ggxiddr