500 Error invalid request ABP framework Login from Angular

I am using ABP framework with Angular. Upon clicking login button I am getting [500] Error! invalid_request the following network request resultenter image description hereenter image description here

However upon clicking login button. shows me login page and authorize successfully.enter image description here

2

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

1

An 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

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.

You Might Also Like