JWT-authentifaction in Wagtail project #354
Replies: 2 comments 3 replies
-
The short answer is.. I don't know. So would appreciate hearing your experience with it |
Beta Was this translation helpful? Give feedback.
-
If you're looking for alternatives, you might want to explore: Graphene-Django: If you're building a GraphQL API in Wagtail using "wagtail-grapple," you can directly use the authentication methods provided by Graphene-Django, which is the underlying GraphQL framework used by "wagtail-grapple." django-rest-framework-simplejwt: If you're working with a mixed API setup that involves both GraphQL and traditional REST endpoints, you could consider using "django-rest-framework-simplejwt" for JWT authentication on the REST endpoints. Custom Solution: Depending on your requirements, you could also implement a custom JWT authentication solution that fits your specific needs. |
Beta Was this translation helpful? Give feedback.
-
Hello, in the "Wagtail" project with the "wagtail-grapple" library installed, I am doing JWT user authorization using the "django-graphql-jwt" library. The question is, is there another JWT authorization library better suited for "wagtail-grapple"?
Beta Was this translation helpful? Give feedback.
All reactions