I am using ABP framework with Angular.
Upon clicking login button I am getting [500] Error! invalid_request the following network request result
However upon clicking login button. shows me login page and authorize successfully.
3 Answers
This issue generally coused by identity server.if you restor database which use different identity server, you should set the client origns table in database with the appsettings.json in the host project The tables you should set as in your database
identityserverclientcorsorigins
identityserverclientpostlogoutredirecturis
identityserverclientredirecturis The issue was in setting in Database. Database had wrong value for RedirectUris
1An update on the database is needed indeed, specifically in this table:identityserverclientredirecturis, but what made the difference to me was adding a / (slash) at the end of my url. I entered both values
and
and now it works