Thank you
Thanks,
How can I see the iFrame issue?
Can you share some steps?
I can successfully log in without any issues.
Yes, Please share a test user info. liming.ma@volosoft.com
I will check the error online
hi
Do you have a URL of your website that I can check online?
hi
There is RoleValidator service that you can override or remove.
https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Identity/Core/src/IdentityServiceCollectionExtensions.cs#L85 https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Identity/Extensions.Core/src/RoleValidator.cs#L34
hi
Please set the log level to Debug and share the logs of AuthServer and API website.
hi
Can you set the log level to Debug and share the logs.txt file?
Thanks
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
Please share the full logs.txt of your video, I guess the return url has wrong.
liming.ma@volosoft.com
Thanks
hi
You can add a IPostConfigureOptions service and inject the services in it.
Services.TryAddEnumerable(ServiceDescriptor.Singleton<IPostConfigureOptions<OpenIdConnectOptions>, YourOpenIdConnectPostConfigureOptions>());
https://learn.microsoft.com/en-us/aspnet/core/fundamentals/configuration/options?view=aspnetcore-7.0#options-post-configuration
https://github.com/dotnet/aspnetcore/blob/release/7.0/src/Security/Authentication/OpenIdConnect/src/OpenIdConnectPostConfigureOptions.cs#L16