hi
There is no invalid_grant error in your logs.
Please share the logs on IIS that have the invalid_grant info.
Thanks
hi
Please set log level to debug and share full logs.txt
Thanks
public class Program
{
public async static Task<int> Main(string[] args)
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
.Enrich.FromLogContext()
.WriteTo.Async(c => c.File("Logs/logs.txt"))
.WriteTo.Async(c => c.Console())
.CreateLogger();
hi
MySqlConnector.MySqlException (0x80004005): Too many connections
This seems a database problem.
hi
I'm not familiar with docker(docker-compose).
hi
Can you use HTTPS in your docker?
Using HTTP will require some extra work.
eg:
SameSite problem
The required antiforgery request token was not provided in either form field "__RequestVerificationToken" or header value "RequestVerificationToken".
hi
If you can use https://webapp-authserver in your environment you don't need it.
hi
I will share a sample project.
https://github.com/abpframework/abp-samples/issues/273
Great