"redirect_uri must be included" error
See original GitHub issueHi,
I’ve added OpenIddict to an ASP.NET Identity website and now i’m trying to use that to authenticate from another website, when I redirect I get the following error
error: invalid_request error_description: redirect_uri must be included when making an OpenID Connect request
Does anyone know what is missing, here is the URL that is passed to the OpenIddict website
https://mysts/connect/authorize?client_id=48BF1BC3-CE01-4787-BBF2-0426EAD21342&response_mode=form_post&response_type=code+id_token&scope=openid+profile&state=OpenIdConnect.AuthenticationProperties%3dwcL3Mnqc6NXQp-W83Z67A5grfwsbp5CYxz9mehrrqj7nAnzja6OAFUuDuSlG73FVzrygg-nVFwmQzk45uL-HRwjPTMpwbfKyBICmVj35d5bhHbgR7wZ79jwVK0WgMrPA&nonce=636052981608509668.YzEzMGYyOGQtOGU1Yy00ZWMyLWE2NjYtMWYwODA0MmEyMjE2OWRkZGUyMjgtNTIyZi00YzdmLTkyODYtMmM1ZWVmYmE2OWFh
Issue Analytics
- State:
- Created 7 years ago
- Comments:5 (3 by maintainers)
Top GitHub Comments
It is, because it’s required by the OIDC specification: http://openid.net/specs/openid-connect-core-1_0.html#AuthRequest
For your second error, enable logging and you’ll immediately understand what’s wrong.
Both the authorization code and implicit flows must be enabled to use the hybrid flow (code + id_token)