st4lk / django-rest-social-auth

OAuth signin with django rest framework
MIT License
517 stars 122 forks source link

AuthTokenError: Token error: Incorrect id_token: nonce #41

Open ghost opened 7 years ago

ghost commented 7 years ago

I'm getting this error when I make a POST request to /api/login/social/token/google-openidconnect/ using the code provided by google. Is openid not supported?

st4lk commented 7 years ago

I was able to reproduce this. Need some time to find an origin of the error.

rohanarora commented 6 years ago

Any updates on this one @kosiraljaz or @st4lk?

daliborjelinek commented 3 years ago

Hi, I'm currently facing same issue with OpenIdConnectAuth backend. I was able to make it work by bypassing nonce validation in validate_claims() method and sice according to specs nonce should be otional this sollution coud be acceptable but I'm not very happy with it.

@st4lk have you made progress on this issue?