hi
I checked the logs and it doesn't have any particular problem.
IDX10223: Lifetime validation failed. The token is expired. This is a normal log because your access_token has expired. There are also several error logs, which should be the browser/front end canceling the request.
Your problem is that the application can't respond. This situation is not like a code problem but more like a problem with the server. We can't troubleshoot the problem through the application logs.
I still have the following questions:
You should be able to view the history of performance indicators such as CPU and memory in Auzre.
Finally, you can consider changing the running environment for testing.
Sorry, I don't have much advice.
hi
For IDX10204 error, you can try to set ValidIssuers as

Your token issuer is https://klir-sandbox-microservices-authserver.klir.com/
https://abp.io/support/questions/7780/Unable-to-Login-even-after-getting-token-using-angular-app#answer-3a14b350-0cd5-a71c-80ba-1b65d3b2ee39
But:
If you can write the identity model logs in administration microservice, that will be best.
I think your administration microservice doesn't request https://klir-sandbox-microservices-authserver.klir.com/.well-known/openid-configuration to get openid-configuration, maybe it use localhost?
https://gist.github.com/maliming/d275b332ad462e42b90f727196cdcf88#file-program-cs-L6-L10
hi
Can you share the har file during the whole process?
I will check your oauth flow
https://requestly.com/blog/how-to-generate-har-files-in-chrome-firefox-safari/
Thanks
Yes, we will improve it
hi
There are only two projects in your logs..
Can you share all logs.txt of your project?
App AuthServer WegGateway All Microservers.
[09:37:20 INF] Proxying to http://xxx-xxx-microservices-administration/api/abp/application-localization?cultureName=en&onlyDynamics=false HTTP/2 RequestVersionOrLower no-streaming
If you can write the identity model in administration microservice, that will be best.
https://gist.github.com/maliming/d275b332ad462e42b90f727196cdcf88#file-program-cs-L6-L10
Your access_token looks no problem
Thanks.
hi
Can you use redis instead of 127.0.0.1 in appsettings.json in docker environment?
"Redis": {
"Configuration": "redis"
},
ok, I will check it asap and share the solution
Enable the Debug logs.
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();