hi
options.SaveTokens = true; //this must set as true.
Thanks @all
I will check it asap.
no matter what I do the logged in admin now only sees home.
Can you share a username and password?
I will test it online.
liming.ma@volosoft.com
the auth server goes in an endless loop.
hi
The current user doesn't have the Cssea.Cetrs permission, so the endless loop happened.
We will avoid this problem in the next version.
Request starting HTTP/2 GET https://apps.cssea.bc.ca/Cetrs - -
These requirements were not met: PermissionRequirement: Cssea.Cetrs
hi
https://support.abp.io/QA/Questions/5018#answer-3a0b0d8f-1cf9-369c-8834-8cb9b50c130d
hi
Can you share a project?
liming.ma@volosoft.com
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();