hi
That is why I suggest you replace the default implement.
I have refunded your question credits.
Can you share the project? include reproduce stes I can download and check it locally.
liming.ma@volosoft.com
hi
My app's UI framework is Tired ( Blazor Server)
Your app is not tiered. : )
Please share the code of Blazor startup module.
hi
It doesn't match the https://datatracker.ietf.org/doc/html/rfc4122
But there should be no error.
hi
the guid generated does not match the pattern for GUIDs
This is abp implement.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Guids/Volo/Abp/Guids/SequentialGuidGenerator.cs#L14
If you think there is an error you can replace it with your own. : )
hi
Can you share your project structure screenshoot?
hi
https://support.abp.io/QA/Questions/2787/Lookup-user--Create-user-from-microservice
hi
Add the below code to your blazor server:
.AddCookie("Cookies", options =>
{
options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
options.SlidingExpiration = true;
options.Events.OnSigningIn = cookie =>
{
cookie.Properties.IsPersistent = true;
return Task.CompletedTask;
};
})
Add the below code to your auth server:
context.Services.ConfigureApplicationCookie(options =>
{
options.ExpireTimeSpan = TimeSpan.FromMinutes(3);
options.SlidingExpiration = true;
options.Events.OnSigningIn = cookie =>
{
cookie.Properties.IsPersistent = true;
return Task.CompletedTask;
};
});