You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My url: path("rest-auth/", include("rest_auth.urls"))
When i request password reset with this endpoitn: http://127.0.0.1:8000/rest-auth/password/reset/ it sends me an email with an url which is working well to reset password but i don't need need like this way.
My url:
path("rest-auth/", include("rest_auth.urls"))
When i request password reset with this endpoitn: http://127.0.0.1:8000/rest-auth/password/reset/ it sends me an email with an url which is working well to reset password but i don't need need like this way.
I am using http://127.0.0.1:8000/rest-auth/password/reset/confirm/ to confirm the password reset and it expect following data
{ "new_password1": "", "new_password2": "", "uid": "", "token": "" }
I dont receive uid and token in the mail, only i receive an url to reset password, anyone there know how can make confirm password reset?
The text was updated successfully, but these errors were encountered: