hi
Can you get the logs at a later date?
Because there are detailed error reasons in the logs
hi
This doesn't seem to be related to abp framework.
hi
Can you share the QA environment application logs?
at local its not even connecting and for local we are getting this error .
I have to see the logs to troubleshoot the problem.
hi
Please delete the Logs.txt file first, change your log level to Debug, reproduce, and then share again.
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
but we are facing few issues related to refresh token url connect/token and getting errors invalid token.
Can you share the error logs(Logs.txt)?
liming.ma@volosoft.com
Thanks.
hi
Please share the Logs.txt file of API side (auth server) website.
Thanks.
liming.ma@volosoft.com
hi
ABP Framework is an asp net core application. So, any tool for asp net core can be used in abp.
hi
but when i am trying to integrate the Auth server of Microservices , i am not able to .
What problem do you get? Can you share the error logs if you have them?
hi
But the user logged in with a different password from IDP and our database had a different password, this scenario did not work for SSO.
You can disable password login on your website. The user can only log in with an external provider(IDP).
If you can get password from IDP then you can set it as your local user password.
However, generally, local users' passwords can be different from those of IDP users. For example, you can use a Google account to log in to a website and set a website password, which can be different from that of Google.