django-rest-auth
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 (...
Just curious how maintained this repo is. No `CONTRIBUTORS.md` and a lot of open issues. We're happy to help out if help's needed.
This is for django 4.0> update
"Authentication credentials were not provided." Error occur While access API through Postman  following code is used in Django setting.py file REST_FRAMEWORK = { 'DEFAULT_AUTHENTICATION_CLASSES':( 'rest_framework.authentication.TokenAuthentication', # for browsable api...
There are several calls to deprecated APIs that were removed in Django 4.0: - `django.conf.url.urls` - `ugettext` - `force_text`
Hi, I want to register me user but I get this error: ``` Internal Server Error: /api/rest-auth/registration/ Traceback (most recent call last): File "C:\Users\HamzaLachi\AppData\Local\Programs\Python\Python37\lib\site-packages\django\core\handlers\exception.py", line 34, in inner response =...
Please merge this change :) Thanks!
When running on latest Django, there is a warning message: ``` /usr/local/lib/python3.9/site-packages/rest_auth/urls.py:18: RemovedInDjango40Warning: django.conf.urls.url() is deprecated in favor of django.urls.re_path() ``` This PR fixes that by changing url to re_path,...
We are using session login in website so user can multiple login and logout in multiple browser (It doesn't throw any error and keep current session while logout from another...
Registration endpoint `rest-auth/registration/` returns errors after suceeding register a user. Instead of a success message, it returns `ConnectionRefusedError`
Django has deprecated the `ugettext_lazy` function from version 3.0. See the [release notes](https://docs.djangoproject.com/en/3.0/releases/3.0/#id3). This function however is imported in `rest_auth/views.py` on line 9. Would be awesome if we can have...