Django Rest Authentication (Reset password by Email). Django rest framework project tutorial[13]

  Рет қаралды 40,187

Cryce Truly

Cryce Truly

Күн бұрын

Пікірлер: 54
@alekstkalia5940
@alekstkalia5940 Жыл бұрын
Thank's a lot, after two weeks of searching I've finally found what I need!
@traxier5471
@traxier5471 Жыл бұрын
You're a live saver! I'm dealing with password reset stuff now and your video is perfect
@Swapnil_Joshi
@Swapnil_Joshi Жыл бұрын
life* saver probably
@livymarilyn509
@livymarilyn509 2 жыл бұрын
Very functional bro to send campaign emails
@michaelsmirnov9796
@michaelsmirnov9796 2 жыл бұрын
Great video series! Which VSCode plugin do you use for your python snippets?
@owenn2106
@owenn2106 2 жыл бұрын
THANK YOU! YOU SAVED MY LIFE LOVE LOVE!
@vincentiuschristophercalvi9122
@vincentiuschristophercalvi9122 2 жыл бұрын
Agreed 100%
@mabelelciecisnerospacheco7413
@mabelelciecisnerospacheco7413 2 жыл бұрын
Thanks !! your videos are gold for me
@abhikb
@abhikb 4 жыл бұрын
Good work sir ! It was very helpful 🙏🙏
@akshaygaikwad9495
@akshaygaikwad9495 2 жыл бұрын
Great video !! Its very helpful👍
@GiaBao-nc8ox
@GiaBao-nc8ox 3 жыл бұрын
Thank you so much for this great tutorial, but what is the difference between smart_str and force_str ?
@smugane
@smugane Жыл бұрын
Appreciate the great work!
@phandc4581
@phandc4581 2 жыл бұрын
Thank you for your great work. The content is really amazing. However, I got the error in some Serializer classes. For example, it raised "AssertionError: Class SetNewPasswordSerializer missing "Meta.model" attribute ". I must put the "model = User" in class Meta. It still worked perfectly.
@I_think_its_funny
@I_think_its_funny 2 жыл бұрын
its because you used serializer.ModelSerializer instead of serializer.Serializers as shown in the video.
@ai_sangeet_studio
@ai_sangeet_studio 3 жыл бұрын
Thanks For This Amazing Tutorial
@sidgoyal167
@sidgoyal167 2 жыл бұрын
For anyone having the error: TypeError: a bytes-like object is required, not 'int' in uidb64 = urlsafe_base64_encode(user.id). Use uidb64 = urlsafe_base64_encode(smart_bytes(user.id)) The video person doesn't mention it as far as I have seen the video.
@marofmia4951
@marofmia4951 2 жыл бұрын
Use this line : uidb64 = urlsafe_base64_encode(str(user.id).encode())
@utsabbashyal7929
@utsabbashyal7929 2 жыл бұрын
please upload some more drf videos please please
@mdshabbirrr
@mdshabbirrr 3 жыл бұрын
By this way.. we are exposing the token in url.. isn't that unsafe?
@dmurali4679
@dmurali4679 2 жыл бұрын
Finally, I got Output
@idedhica
@idedhica 3 жыл бұрын
why i am redirect to django default reset password instead of custom view that alreday created?
@smittrivedi7924
@smittrivedi7924 Жыл бұрын
Realy Helpfull!!!
@veereshgs5298
@veereshgs5298 4 жыл бұрын
Greate explanation
@Dabbledoodibbledoop
@Dabbledoodibbledoop 3 жыл бұрын
hi a followed your tutorial but when a user signed up it wouldnt send an email
@italobarzola631
@italobarzola631 3 жыл бұрын
Hi, this method is based in Simple Json Web Token???
@iamrealnurs8368
@iamrealnurs8368 2 жыл бұрын
when did you add auth/token/refresh to the auth views in the beginning of the video?
@buildwithmel5486
@buildwithmel5486 2 жыл бұрын
gotten a reply yet?
@nomanhussain2689
@nomanhussain2689 3 жыл бұрын
the code is upgraded, you have used CustomRedirect class, which tutorial explains this?
@crycetruly
@crycetruly 3 жыл бұрын
Video is also in the playlist
@crycetruly
@crycetruly 3 жыл бұрын
Check it out kzbin.info/www/bejne/nKC8omSDfLhnraM
@wanjalaproduction
@wanjalaproduction 3 жыл бұрын
Hi man any chance you can add a view that generates a new verification link if old one is expired?
@FunnysunNet
@FunnysunNet 3 жыл бұрын
This episode is a complete mess, however is quite useful, keep it up!
@mehdishahsavari954
@mehdishahsavari954 3 жыл бұрын
awesome, thanks men
@thaiphongggg
@thaiphongggg 4 жыл бұрын
i have noti "success": "We have sent you a link to reset your password" but i not receive in email :(( can you help me :((
@ronitjangam8927
@ronitjangam8927 3 жыл бұрын
Django default email sending doesn't sometimes work use SMTP instead.
@pablogee3905
@pablogee3905 3 жыл бұрын
I'm getting this error "TypeError: keys must be str, int, float, bool or None, not __proxy__"...what's happening
@crycetruly
@crycetruly 3 жыл бұрын
Hi,could you check your code against source code in the GitHub repo for this series.
@pablogee3905
@pablogee3905 3 жыл бұрын
@@crycetruly what python version we're you using then because everything is fine but it doesn't work. PS I'm using python v 3.9.6
@veereshgs5298
@veereshgs5298 4 жыл бұрын
Could you please tell me just now I taken ur code when we r reset link send to send to user, that's good but here latest code we have to give email and redirect url as input why we need redirect url as a input wt should vwe have to give , if I'm not giving redirect url could you please give me your what's app number
@prashantpandey6398
@prashantpandey6398 4 жыл бұрын
hey can you suggest a way so that we do not have to fill the token and uidb64
@crycetruly
@crycetruly 4 жыл бұрын
Hey, if you have a frontend application you can redirect to its URL,or you can have a simple template on the server which you present the user. Instead of sending back a json response
@victoriduh3130
@victoriduh3130 2 жыл бұрын
@@crycetruly pleaseeeee I’m still trying to figure out how I’m suppose to do this without filling the token and uidb64. Even creating a template still very hard to
@Wegman7
@Wegman7 3 жыл бұрын
How does the frontend get access to uidb64 and the token from the email?
@crycetruly
@crycetruly 3 жыл бұрын
Check this video out kzbin.info/www/bejne/nKC8omSDfLhnraM
@Wegman7
@Wegman7 3 жыл бұрын
@@crycetruly Oh okay great thanks.
@Wegman7
@Wegman7 3 жыл бұрын
@@crycetruly Also just wondering, what's the reason you didn't use a jwt token for the password reset?
@crycetruly
@crycetruly 3 жыл бұрын
@@Wegman7 hi, we already have the built-in PasswordResetTokenGenerator class specifically to handle password resets, it's ideal to use that as its already thoroughly tested.
@sanketpatel4240
@sanketpatel4240 4 жыл бұрын
Great work. Can I have the git access to the code.
@avaniksavani3532
@avaniksavani3532 3 жыл бұрын
can you share this tutorial code link
@nandanchauhan4678
@nandanchauhan4678 3 жыл бұрын
error occurred => Circular reference detected
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 2,6 МЛН
The Ultimate Sausage Prank! Watch Their Reactions 😂🌭 #Unexpected
00:17
La La Life Shorts
Рет қаралды 7 МЛН
HELP!!!
00:46
Natan por Aí
Рет қаралды 70 МЛН
Django & React JWT Authentication Part 8 - Password Reset
17:15
Bryan Brkic
Рет қаралды 17 М.
Password Reset Email | Django (3.0) Crash Course Tutorials (pt 20)
19:28
User Registration and Password Management In DRF
20:06
Django World
Рет қаралды 4 М.
Django JWT Authentication in 7 Minutes
7:18
Tenacity
Рет қаралды 2,6 М.
Симбу закрыли дома?! 🔒 #симба #симбочка #арти
00:41
Симбочка Пимпочка
Рет қаралды 2,6 МЛН