I'd like to use django-rest-auth to easily make use of the registration and social auth features of django-allauth in my API.
I'd also like to use django-rest-knox, as it provides a token per device, rather than per user.
When creating a user via django-rest-auth
, it tries to create and return a token. This fails, as it needs to use django-rest-knox
to generate the token, but I'm unclear on how to do this. Is it possible to get these two packages working together?
Thanks!