djoser icon indicating copy to clipboard operation
djoser copied to clipboard

REST implementation of Django authentication system.

Results 155 djoser issues
Sort by recently updated
recently updated
newest added

When posting to 'localhost:8000/auth/o/google-oauth2/?state=&code=' I get the following error: non_field_errors: ["State could not be found in server-side session data."] I am making the request from localhost:3000. I'm pretty sure I...

Hi, why is there a constraint on the SimpleJWT version? ``` djangorestframework-simplejwt (>=4.3.0,

Fixed minor typo in README.rst - the -> they

First thanks for this library, it is super easy for beginners. I use the default django User model (username, email, password required). When I set "LOGIN_FIELD" to "email" the user...

Am I right in saying that there is no route that can be used to check a password reset UID and token before the user tries to reset their password?...

enhancement

This is not a bug, rather a common logic (expected representation convention). The generated OpenAPI specification schema, presents `username` and `password` fields in reverse (as someone would expect it) order...

I've encountered this problem within my web app when doing a password reset. My sending of email to any other features on my web app works except for one of...

When I try to send an activation mail when creating a User, I see an error concerning the smtp lib and I realize that it is related to DJoser and...

Reviewing djoser code, if I understand it correctly, the usage is "all or nothing". I mean, UserViewSet implements all "base" features and then is routed like so: `router.register("users", views.UserViewSet)` Which...

enhancement