Тёмный

Nest.js - full authentication course 

Mike dev
Подписаться 1,5 тыс.
Просмотров 32 тыс.
50% 1

Nest JS authentication project build with Nestjs, Prisma, Postgresql, JWT and cookies.
Github repo:
github.com/michaelDonchenko/n...

Наука

Опубликовано:

 

25 май 2022

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 48   
@christopherodhiambo7696
@christopherodhiambo7696 Год назад
I was struggling to understand the NestJS Authentication, but having seen this video. I am now able to setup the NestJS Authentication, thank you so much!
@mamlzy
@mamlzy Год назад
Thank you so much Mike dev, now i know how to extractJwt from cookies in JwtStrategy, thanks again!
@khal-elbangcola8167
@khal-elbangcola8167 Год назад
Thank you Sir for sharing your knowledge. Much appreciated.
@CodewithAby
@CodewithAby Год назад
Thank you for this video, what I was looking for exactly
@codewithstruckchure
@codewithstruckchure Год назад
"They have a cat image, it's supposed to be good" 🤣 And actually it's good, thanks for the education BTW.
@VIKTOR-pw8eu
@VIKTOR-pw8eu Год назад
Thanks for the great tutorial!
@abodesegunezekiel6145
@abodesegunezekiel6145 Год назад
This is a great tutorial, Thanks
@murat6018
@murat6018 Год назад
Saved my life man, the NextJS docs are kinda weird when it comes to auth.
@Lienhabei
@Lienhabei 4 месяца назад
Very good course
@HenryOsim
@HenryOsim 2 года назад
nice tutorial
@suryaprakashchaudhary2685
@suryaprakashchaudhary2685 Год назад
Explaination is very good but I faced error like everytime I get 401 UnAuthorized Access. My JWTToken and cookie generated successfully and also then contained correct credentials
@siriusmarz512
@siriusmarz512 Год назад
Thanks you haved help me.
@HenryOsim
@HenryOsim 2 года назад
I want to build a rest api that will be consumed by react admin(front-end) using sessions/http-only cookies and a mobile app using jwt tokens(stateless). Please can you advise me on how to structure/Architect my NestJS project to help me build this?
@mikedev4673
@mikedev4673 2 года назад
Do you ask how to separate the web method from the mobile? or how to implement this methods?
@owofrostyy8840
@owofrostyy8840 Месяц назад
I feel like you could keep the service lvl cleaner like this: in sign in logic, you didn't have to pass req and res to the service level and could've handled as follows: At the service level: async sign-in(dto) { ...The rest of your code return token; } And then at the controller level: async sign-in(dto, req, res) { const token = await this.authService.sign-in(dto) req.cookie("jwt", token, {...Your cookie options}). }
@vineetguptagwl
@vineetguptagwl 6 месяцев назад
Please make a Playlist of nest js
@mdhasanmia474
@mdhasanmia474 8 месяцев назад
how to use myuser api for fetching data... i get error unauthorised when i call from react frontend, i set token in token in cokies using jwt-token, then pass it by headers .. but not work.please give a axios example.. its urgent
@jll9464
@jll9464 Год назад
Hi! Thank you very much for your video. I followed your tutorial, but I encountered a problem. When I try to post the email and password, nest.js will have an error: Invalid `prisma.users.create()` invocation in xxx and : Query createOneusers is required to return data, but found no record(s). Do you know how to solve this?
@mikedev4673
@mikedev4673 Год назад
Hi try to debug this with console logs I don't sure what this error is but check what causes it, put logs on your email and password and on the result on the result of the creation maybe
@jll9464
@jll9464 Год назад
@@mikedev4673 Thank you very much ! I solved this by use createMany() instead of create(), but I still don't know why.
@elaydit1579
@elaydit1579 Год назад
Hi, what should i do? JwtStrategy requires a secret or key
@mikedev4673
@mikedev4673 Год назад
did you make .env file with the jwt secret?
@babarzaman151
@babarzaman151 Год назад
you can run prisma db push instead of the prisma migrate dev
@mikedev4673
@mikedev4673 Год назад
Thanks I will take a look at that
@reanyouda8299
@reanyouda8299 2 года назад
How can i check if user already sign or not ? In front end
@mikedev4673
@mikedev4673 2 года назад
You can have isAuth flag stored somewhere globally in your app, and after the login change it to true. If you want to check or get some info from server private route your client should send the jwt cookie for validating your user.
@reanyouda8299
@reanyouda8299 2 года назад
@@mikedev4673 yes but what is token is dead and how can i check if it dead and redirect user to login page or something?
@reanyouda8299
@reanyouda8299 2 года назад
or i should have a function to get data from private route if failed user direct to login page
@mikedev4673
@mikedev4673 2 года назад
@@reanyouda8299 yes it is possible to do it like that and to make a token to expire you can define how long the token will last at the jwt options.
@BenfredjMaissa
@BenfredjMaissa Год назад
Thanks for the great tutorial , you have any idea about how to send mail verification and forgot password please ?
@mikedev4673
@mikedev4673 Год назад
I did it before it was a long time ago but I think I just used some mailing service, you can check sendgrid or mailchimp
@1023Xc-tw6zi
@1023Xc-tw6zi 2 месяца назад
@BenfredjMaissa Did you ever find out how to do email verification and password recovery?
@coderegtech4492
@coderegtech4492 Год назад
can you do it with refreshToken?
@mikedev4673
@mikedev4673 Год назад
It is quite an overkill but I will consider making a real project and include that
@fromntop3750
@fromntop3750 Год назад
Thank you so much, your video is perfect. I was looking for, but didn't find anthing while i saw youre video. Interesting moment for me, 1:29:28 you logged by test2 account, but you can see test email and coun't see test2? Is it true? Or i misunderstood you maybe. I wish you a lot of subscribles. if i have some mistakes, i am sorry🤭
@mikedev4673
@mikedev4673 Год назад
hi I can see why it may be confusing but I was logged in as just test, the fields you see in the body doesn't actually matter we are making a get request so it doesn't matter what is there
@user-ji7sm5hw1j
@user-ji7sm5hw1j Год назад
Greate job! Need frontend with NextJS to this backend and rename fullstack to PPNN(Postgress+Prisma+Nest+Next). Patent plz :)
@mikedev4673
@mikedev4673 Год назад
It's actually made me laugh lol, but a good idea I will consider making a real project with this stuck not just authentication
@hafiz2047
@hafiz2047 7 месяцев назад
Please make amazon clone
@rafaelbarbosa3030
@rafaelbarbosa3030 25 дней назад
dude great video but damn why are you so slow
@onrightside
@onrightside 10 месяцев назад
what terrible thing happened to your mic ;)
@mikedev4673
@mikedev4673 9 месяцев назад
hmm, what do you mean? :)
@bajranedim4100
@bajranedim4100 Год назад
I follwed your course, and all works fine but guards. I cloned your project also and tried, but still when I put @UseGuards(JwtAuthGuard) I am facing 401 unauthorized error
@mikedev4673
@mikedev4673 Год назад
Hi, did you try to "login" first with postman? you should have a cookie to pass the guard
@galkristofhun
@galkristofhun Год назад
@@mikedev4673 hey! It seems to me that I have the same error. { "statusCode": 401, "message": "Unauthorized" } And Yes, I logged in and I have the Cookies in the Postman. Everything works, except this, it tells me Unauthorized no matter what.
@mikedev4673
@mikedev4673 Год назад
@@galkristofhun ok I will check this issue
@galkristofhun
@galkristofhun Год назад
@@mikedev4673 thanks, although now I don't remember how, but I managed to solve it.
@wlady3190
@wlady3190 5 месяцев назад
Did you find where is the error? thx@@galkristofhun
Далее
100+ Linux Things you Need to Know
12:23
Просмотров 78 тыс.
НУБ ИЩЕТ ЖЕНУ В GTA SAMP
22:34
Просмотров 269 тыс.
Envy recreating this new trend ✨ #shorts
00:14
Просмотров 2,3 млн
NestJS + Prisma Deep Dive
51:42
Просмотров 19 тыс.
NestJS Tutorial For Beginners - Learn NestJS
51:49
Просмотров 7 тыс.
Learn Nest.js from Scratch by building an API
1:09:06
Просмотров 538 тыс.
PERN authentication full course (frontend)
1:18:00
Просмотров 10 тыс.
NestJS Crash Course - Build a Complete Backend API
3:21:59
Все Смартфоны vivo Серии V30!
24:54
Просмотров 22 тыс.
When you have 32GB RAM in your PC
0:12
Просмотров 626 тыс.
Игровой Комп с Авито за 4500р
1:00