django-rest-auth icon indicating copy to clipboard operation
django-rest-auth copied to clipboard

This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (...

Results 121 django-rest-auth issues
Sort by recently updated
recently updated
newest added

We are managing multiple user email addresses via [django-allauth](https://github.com/pennersr/django-allauth). It doesn't seem like there is an email account management serializer/endpoint included in `django-rest-auth`. Is that correct or am I missing...

'ugettext_lazy' is depreciated from django3.12, and also force-text is also depreciated now using getlazy and force-str

in https://github.com/Tivix/django-rest-auth/blob/master/rest_auth/urls.py you used " from django.conf.urls import url " but it's removed from django and makes some problems

Used relevant pieces: django-allauth==0.28.0 django-rest-auth==0.8.2 Django==1.10.3 djangorestframework==3.5.3 Created a user with POST request to /rest-auth/registration/ User was created fine, an verification email was send, with a link to verify the...

This pull request aims to make the Django REST Auth project compatible with Django 5.0.2 and includes some other updates. The changes I've made are as follows: - Updated the...

Hey guys, I'm trying to setup social login through OAuth2 with Github. I've followed along with what you guys have said for google login here: https://github.com/Tivix/django-rest-auth/issues/316#issuecomment-310358200 But I'm getting Method...

Rest-auth APIs don't appear under DRF browsable API root. I am using django-rest-auth==0.8.1 and djangorestframework==3.5.3. (However swagger doc display it)

Hello, It seems that RegisterView always returns the session cookie, even when the session is disabled with REST_SESSION_LOGIN = False Here is an example using the demo project and after...

replace the deprecated **`rest_framework_jwt`** library with **`djangorestframework-simplejwt`**, in LOGIN/LOGOUT views, jwt_encode func in rest_auth/utils.py and any other occurence of the deprecated package