Thank's a lot, after two weeks of searching I've finally found what I need!
@traxier5471 Жыл бұрын
You're a live saver! I'm dealing with password reset stuff now and your video is perfect
@Swapnil_Joshi Жыл бұрын
life* saver probably
@livymarilyn5092 жыл бұрын
Very functional bro to send campaign emails
@michaelsmirnov97962 жыл бұрын
Great video series! Which VSCode plugin do you use for your python snippets?
@owenn21062 жыл бұрын
THANK YOU! YOU SAVED MY LIFE LOVE LOVE!
@vincentiuschristophercalvi91222 жыл бұрын
Agreed 100%
@mabelelciecisnerospacheco74132 жыл бұрын
Thanks !! your videos are gold for me
@abhikb4 жыл бұрын
Good work sir ! It was very helpful 🙏🙏
@akshaygaikwad94952 жыл бұрын
Great video !! Its very helpful👍
@GiaBao-nc8ox3 жыл бұрын
Thank you so much for this great tutorial, but what is the difference between smart_str and force_str ?
@smugane Жыл бұрын
Appreciate the great work!
@phandc45812 жыл бұрын
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_funny2 жыл бұрын
its because you used serializer.ModelSerializer instead of serializer.Serializers as shown in the video.
@ai_sangeet_studio3 жыл бұрын
Thanks For This Amazing Tutorial
@sidgoyal1672 жыл бұрын
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.
@marofmia49512 жыл бұрын
Use this line : uidb64 = urlsafe_base64_encode(str(user.id).encode())
@utsabbashyal79292 жыл бұрын
please upload some more drf videos please please
@mdshabbirrr3 жыл бұрын
By this way.. we are exposing the token in url.. isn't that unsafe?
@dmurali46792 жыл бұрын
Finally, I got Output
@idedhica3 жыл бұрын
why i am redirect to django default reset password instead of custom view that alreday created?
@smittrivedi7924 Жыл бұрын
Realy Helpfull!!!
@veereshgs52984 жыл бұрын
Greate explanation
@Dabbledoodibbledoop3 жыл бұрын
hi a followed your tutorial but when a user signed up it wouldnt send an email
@italobarzola6313 жыл бұрын
Hi, this method is based in Simple Json Web Token???
@iamrealnurs83682 жыл бұрын
when did you add auth/token/refresh to the auth views in the beginning of the video?
@buildwithmel54862 жыл бұрын
gotten a reply yet?
@nomanhussain26893 жыл бұрын
the code is upgraded, you have used CustomRedirect class, which tutorial explains this?
@crycetruly3 жыл бұрын
Video is also in the playlist
@crycetruly3 жыл бұрын
Check it out kzbin.info/www/bejne/nKC8omSDfLhnraM
@wanjalaproduction3 жыл бұрын
Hi man any chance you can add a view that generates a new verification link if old one is expired?
@FunnysunNet3 жыл бұрын
This episode is a complete mess, however is quite useful, keep it up!
@mehdishahsavari9543 жыл бұрын
awesome, thanks men
@thaiphongggg4 жыл бұрын
i have noti "success": "We have sent you a link to reset your password" but i not receive in email :(( can you help me :((
@ronitjangam89273 жыл бұрын
Django default email sending doesn't sometimes work use SMTP instead.
@pablogee39053 жыл бұрын
I'm getting this error "TypeError: keys must be str, int, float, bool or None, not __proxy__"...what's happening
@crycetruly3 жыл бұрын
Hi,could you check your code against source code in the GitHub repo for this series.
@pablogee39053 жыл бұрын
@@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
@veereshgs52984 жыл бұрын
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
@prashantpandey63984 жыл бұрын
hey can you suggest a way so that we do not have to fill the token and uidb64
@crycetruly4 жыл бұрын
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
@victoriduh31302 жыл бұрын
@@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
@Wegman73 жыл бұрын
How does the frontend get access to uidb64 and the token from the email?
@crycetruly3 жыл бұрын
Check this video out kzbin.info/www/bejne/nKC8omSDfLhnraM
@Wegman73 жыл бұрын
@@crycetruly Oh okay great thanks.
@Wegman73 жыл бұрын
@@crycetruly Also just wondering, what's the reason you didn't use a jwt token for the password reset?
@crycetruly3 жыл бұрын
@@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.
@sanketpatel42404 жыл бұрын
Great work. Can I have the git access to the code.