Closed cburmeister closed 4 years ago
I just had the same issue, but it just went away. No idea why :cry:
Turns out this was due to a misconfiguration on our end, the downstream the client was unable to reach our OAuth server when trying to access the /userinfo
endpoint.
We're using Hydra as our Identity Provider. In our scenario -- somewhere during the callback you can see that this library is requesting our token endpoint a second time which causes the provider to return a 400:
It's obvious why the second request to the endpoint failed, the authorization code has already been used to obtain a token... I just can't determine why the library isn't returning a 302 during the callback as it should but instead attempting to request the token endpoint a second time.
Here's our
settings.py
:Any help would be appreciated!