Invalid client configuration for client TiberVendor_Swagger_API: No redirect URI configured.
These logs are normal. not include the errors.
hi
You can google the error message. I'm not familiar with this.
What about the Identity Server logs?
Waiting for good news.
hi
Usually, you can use ICurrentTenant to get current tenant info, if your API needs to control it, you can pass tenantId
to your API.
https://docs.abp.io/en/abp/latest/Multi-Tenancy#icurrenttenant https://docs.abp.io/en/abp/latest/Multi-Tenancy#change-the-current-tenant
hi
See https://docs.abp.io/en/abp/latest/Authorization#claims-principal-factory
public static class CurrentUserExtensions
{
public static string GetSocialSecurityNumber(this ICurrentUser currentUser)
{
return currentUser.FindClaimValue("SocialSecurityNumber");
}
}
hi, We will enhance this in next version.
incognito mode is working fine, but end-user don't open incognito mode.
You can clear the localhost or your domain cache and cookies.
options.Cookie.Name = "API_AuthCookie";options.Cookie.Path = "/";
https://docs.microsoft.com/en-us/aspnet/core/security/authentication/identity-configuration?view=aspnetcore-6.0#cookie-settings https://docs.microsoft.com/en-us/aspnet/core/security/anti-request-forgery?view=aspnetcore-6.0#configure-antiforgery-with-antiforgeryoptions https://docs.abp.io/en/abp/latest/CSRF-Anti-Forgery#configuration-customization
You can check the module that can be called in your project, and search for it in the entire solution.