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

### Fix import errors: **django.utils.translation** - ugettext_lazy -> gettext_lazy **django.conf.urls -> django.urls** - url -> re_path **django.utils.encoding** - force_text -> force_str

when trying to install the recent version of `django-rest-auth `with Django 4 since it uses the deprecated function `ugettext_lazy` from `django.utils.translation` the error : ``` File "/path/to/views/views.py", line 8, in...

Hi! This error occurs when the email is entered correctly: `django.urls.exceptions.NoReverseMatch: Reverse for 'password_reset_confirm' not found. 'password_reset_confirm' is not a valid view function or pattern name.` And when the wrong...

(env_universal) usama@Usamas-MacBook-Pro DRF_test % python manage.py makemigrations Traceback (most recent call last): File "/Users/usama/Desktop/projects/DRF_test/manage.py", line 22, in main() File "/Users/usama/Desktop/projects/DRF_test/manage.py", line 18, in main execute_from_command_line(sys.argv) File "/Users/usama/Desktop/projects/env_universal/lib/python3.9/site-packages/django/core/management/__init__.py", line 446, in...

Hi, when I call in Windows Phone application request like this PUT /rest-auth/user/ HTTP/1.1 Authorization: Basic ********== Content-Type: application/json Host: dimensions2016.herokuapp.com Connection: close User-Agent: Paw/2.3.3 (Macintosh; OS X/10.10.5) GCDHTTPRequest Content-Length:...

When I register a new user, the new user is automatically logged in. How can I prevent that?

I was following book 'Django for APIs' by 'WS Vincent' , in chapter-7 rest-auth was installed, I got errors because of latest Djnago-4.0, So tried fixing it. Now I got...

Hi all, thanks for the great lib. If someone uses a custom model that has, for example, `email` and `password` and no `username` and try to use the library, it...

On an existing application running tests with `v0.9.2` and `v0.9.3` gives different results. No other changes apart from upgrading `django-rest-auth` were made. I have `django-rest-auth[with_social]~=0.9.2` in `requirements.txt`. ``` /my_project #...