Social Auth #47
-
Is there any way to integrate social auth with Ariadne and Django? |
Beta Was this translation helpful? Give feedback.
Answered by
maxmorlocke
Jul 19, 2022
Replies: 1 comment 1 reply
-
Nothing out of the box, exactly, but this isn't terribly hard to roll. You should be able to use any of the standard django libraries and add a decorator very similar to this to validate a JWT token, call an API, etc. It's then up to you if you want to build graphql-facing auth endpoints. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
maxmorlocke
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nothing out of the box, exactly, but this isn't terribly hard to roll. You should be able to use any of the standard django libraries and add a decorator very similar to this to validate a JWT token, call an API, etc. It's then up to you if you want to build graphql-facing auth endpoints.