Re: Django Custom User model and making auth api

2021-04-03 Thread 'Ajay Rathore' via Django users
Hey, Another alternative is to use graph ql. https://github.com/graphql-python/graphene-django Regards *Ajay Rathore* Python Developer On Sat, Apr 3, 2021 at 11:43 AM Ayser shuhaib wrote: > django-rest-auth is still supported, it's not currently receiving updates, > but you can still use it an

Re: Django Custom User model and making auth api

2021-04-03 Thread Ayser shuhaib
django-rest-auth is still supported, it's not currently receiving updates, but you can still use it and it has no issues so far. On Sat, Apr 3, 2021 at 9:39 AM Saad Mrabet wrote: > Yes it is in fact the bast option possible, thank you ! > > On Friday, April 2, 2021 at 11:50:55 PM UTC+1 Ryan Now

Re: Django Custom User model and making auth api

2021-04-03 Thread Saad Mrabet
Yes it is in fact the bast option possible, thank you ! On Friday, April 2, 2021 at 11:50:55 PM UTC+1 Ryan Nowakowski wrote: > I don't have a ton of experience with it but when a question includes the > term "create an API", the answer usually includes "just use Django Rest > Framework". > > >

Re: Django Custom User model and making auth api

2021-04-03 Thread Saad Mrabet
Hello, hope you're doing well, I did a similar work and I find out that django-rest-auth is lo longer supported and don't receive any new update, do you have any ideas about which is the best third party for auth ? https://www.django-rest-framework.org/api-guide/authentication/ On Saturday,

Re: Django Custom User model and making auth api

2021-04-02 Thread Ayser shuhaib
Please see this tutorial as it explained how to create a custom user model and uses django-rest-auth for the (login, logout, signup ...etc) https://youtu.be/GdfLXHhNABE On Sat, 03 Apr 2021 at 00:50, Ryan Nowakowski wrote: > I don't have a ton of experience with it but when a question includes

Re: Django Custom User model and making auth api

2021-04-02 Thread Ryan Nowakowski
I don't have a ton of experience with it but when a question includes the term "create an API", the answer usually includes "just use Django Rest Framework". On April 2, 2021 1:59:10 AM CDT, Saad Mrabet wrote: >Hello every i m currently working on a project where had to overwrite >the Abstract