hi
Please share the full logs of your backend app, including the authserver and web app.
liming.ma@volosoft.com
hi
What's this website?
https://nvisionweb-dev.azurewebsites.net/
Are you using angular?
Which app is called the POST api/account/send-email-confirmation-token
?
Please share a structure screenshot of your solution.
hi
[DBG] VerifyUserTokenAsync() failed with purpose: EmailConfirmation for user.
Seems to be a problem with Data Protection
, Please share the full log starting from the application startup.
https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-7.0
also share the code related to AddDataProtection
Enable Information level logging of DataProtection to help diagnosis problem. The following appsettings.json file enables information logging of the DataProtection API:
https://learn.microsoft.com/en-us/aspnet/core/security/data-protection/configuration/overview?view=aspnetcore-7.0#logging-dataprotection
Thanks
hi
Can you set the log level to debug and re-get the logs?
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
Hi, we are receiving the error "Volo.Abp.Identity:InvalidToken": "Invalid token.", whenever an email confirmation link is clicked.
I can't see the error in the logs that you shared. Can you share these logs when you receive the error?
hi
Can you add this endpoint URL to your Yarp?
It does not start with api/chat
https://localhost:44325/signalr-hubs/chat/negotiate?negotiateVersion=1
hi
Configure<AbpAspNetCoreAuditingOptions>(options =>
{
options.IgnoredUrls.AddIfNotContains("/health");
});```
hi
Are there any error logs on the browser console or backend app?
hi
Add below code to XXX.Blazor.Server/wwwroot/blazor-global-styles.css
#components-reconnect-modal{
z-index: 1056 !important;
}
hi
What are the logs of the backend of the 400 bad request?