The thing I love about this playlist is using simple language, very easy to understand and please always give the scenario of how things work at enterprise level in your future video.😌
@santoshdhariwal8979 Жыл бұрын
Excellent Videos Piyush... Explaining it in such a simple way.. makes it so easy
@ravisingh590610 ай бұрын
i can't set cookie by res.cookie
@sawaregamer88158 ай бұрын
use cookie parser and if you work on react and node you need to use cors package
@DineshKumar-gt7xm7 ай бұрын
@@sawaregamer8815I am also not able to set cookies using react. I have used both cookie parser and cors package.
@muhammadtaimoor23787 ай бұрын
Use res.cookies
@Solo_playz9 ай бұрын
I thought the same even though I used to do the same in my MERN stack projects what shubham has asked But Thanks Piyush for getting us more clear on it also I found that OAuth and NextAuth use the same technique while authenticating users on each request they utilize tokens stored in the cookies and get users' data from it! Very very useful topic you have covered
@shubhamgupta-bl1tr Жыл бұрын
Thanks sir taking my doubts..it's clear now
@pradeeppop8201 Жыл бұрын
This tutorial of nodejs is more useful to any other paid tut . Thank you so much sir such a amazing series ❤️ 🙌 👏
@weforyouweb1165 Жыл бұрын
Bro you are explaining very deep things in practical superb bro 🎉🎉
@lillyput227511 ай бұрын
Bro just don’t stop posting videos u r just amazing tutor❤
@ageshalbhandare2487 Жыл бұрын
No words, how you explain deep fully, at each word meaning fully explain😊 Thank you, Create An KZbin channel and share your knowledge📚
@pallabdandapat18668 ай бұрын
22:28 -->changes happen
@satyanshgarg965110 ай бұрын
Great work, it has compelled me to like and subscribe.
@mahendra.k126 ай бұрын
If you encounter this error: Cannot read properties of undefined (reading 'split'), Follow the given steps: 1. first make changes only to handleLogin controller and send token as json instead of setting a cookie. 2. Now in postman, make POST req to /user/login and generate a token. 3. Now make change to our middleware functions i.e to checkAuth and restrictLogin middlewares. 4. And now finally make GET req to homepage and set the authorization header in postman. Reason: If you make changes to the middlewares first and then try to generate the token it will result in error because we don't have authorization header during initial token generation and the checkAuth middleware is still executed. Hence generate the token first and then make necesarry changes in the middlewares. Hope it helps!
@Spotlight_Gaming5 ай бұрын
still getting the same
@knowledgehub.eАй бұрын
@@Spotlight_Gaming same issues
@rohitlochib23003 ай бұрын
Thank You Sir, It was one of the Best explanation of cookies on youtube.
@lakshyakhushalani9464 Жыл бұрын
literally no words for uh bro !...excellent explaination 😃😃
@PrathameshSakore-h1i2 ай бұрын
The authorization header is not present by default in the POST request in postman and hence you can get the error: Cannot read properties of undefined (reading 'split') as there's no authorization header present, you have to set the header in the Headers tab manually as "Authorization" and set its value to null so that it can be used further in the middleware functions.
@sutharjay110 ай бұрын
Got to know many things this video thank you for the lecture😇😇
@iganic75743 ай бұрын
16:10 what are you trying to do 🤔 According to mdn Fir domain value - "Only the current domain can be set as the value, or a domain of a higher order" "A cookie for a domain that does not include the server that set it should be rejected by the user agent."
@khushichaurasia1213 ай бұрын
From where you learn all this so well??
@Believeharsh23 күн бұрын
This is called pure hardworking, he go through all the documenation and dig the google very well. That is the problem, everything is available for everyone but our lazy culture........!!
@dineshsinghbisht07 Жыл бұрын
Thanks for the video 🔥✨
@piyushgargdev Жыл бұрын
My pleasure!
@Muzafar.A10 ай бұрын
that was so useful and deep knowledge for newbie. awesome bro ❤.
@heyOrca27112 ай бұрын
Thank You Piyush For this great video!!! ; )
@Hardik30007 ай бұрын
21:06 but token match karne ke liye database access chahiye hoga na har bar request aane par!!..........to problem to same hi rahi jo aapne video ke starting me kaha tha
@imPrathamDev Жыл бұрын
can you explain refresh token and access token?
@mayankbadika310111 ай бұрын
Thank you so much for sharing this. Very good explanation :)
@vishalkumarshaw92082 ай бұрын
superb bhai...
@mma-dost Жыл бұрын
Thanks bhaiya for the video tutorials. 🥳🥳🔥🔥🤘🤘
@piyushgargdev Жыл бұрын
You're welcome 😊
@mr_singhai97787 күн бұрын
@priyam, In Postman, we manually send the token via headers without using local storage or cookies. How can we receive this token in our backend middleware to authenticate the request?
@banothutharun27434 ай бұрын
excellent explanation brother
@ashishprajapati825 Жыл бұрын
Amazing explaination bro ❤👏🏻
@AkashLayal11 ай бұрын
Sir i have a doubt because 11:04 you have directly providing user from jwt token but if the user is deleted from database but the user can still access logged in content.
@vishnugopalakrishnan953910 ай бұрын
getUser function doesnt "provide" user directly, it decodes the user data that was signed, i.e. id and email, adds it to req.user (code under restrictToLoggedInUser ) and finds that info from the database for each req, you can check the code at router.get('/'..) under staticRouter,
@kanamithra506210 ай бұрын
Good explanation👍
@Raj6026 Жыл бұрын
Thanks bro..excellent video .really helpful
@Abdullahsiddique-wf2nt9 ай бұрын
Agr hum Map or database ko combined use kry tu excess database request ka issue ni hoga, first time jab user login hoga tu map ma bhi or database ma bhi store hoga or getuser ma hum check laga day ka agr user exist krta ha map ma tu database sa query na kry or agr map sa ma ni ha tu database sa query kr kay usko map store krdy for further request verification
@movocode Жыл бұрын
Thank you for this tutorial - you have make an overview video about architecture of SSO (single sign on) authentication - if possible, can you make a full coding tutorial of SSO (basic only will do).
@tarushchandra8993 Жыл бұрын
Hi Piyush, maine ek website banai hai jiska server or client different domain pe hai but jab mai sever me cookies ke option me domain ko apne client ke domain pe set karta hu, tab bhi cookie send nahi ho rahi. I've also used cors for cross platform sharing. kya browser ka kuch default behavior hota ki third party client par cookie send nahi karna? meanwhile maine localstorage me token send kar diya, but mai cookies me token send karna chahta hu..
@JatinBedi69 Жыл бұрын
Bhai solution mila kya
@DineshKumar-gt7xm7 ай бұрын
@@JatinBedi69did you get any solution?
@chetu9241 Жыл бұрын
U got one subscriber ❤
@piyushgargdev Жыл бұрын
Thank you so much ❤️
@Tensor083 ай бұрын
2:00 what about storing user with their session id in redis instead of db
@Fe-ironman3 ай бұрын
what is the difference? what does reddis do?
@saeedahmed11777 күн бұрын
That is good way
@shamunkhatri67543 ай бұрын
Really good video but It would be good if you compare localstorage vs cookies which is better, limitations like that.
@himanshuarora19109 ай бұрын
you should set the headers in ejs files only ,whats the use of creating them if we have to use postman only
@lovelymusic3549 Жыл бұрын
Sir please tell us about new react JS series any idea when it's starting?
@amanmaddhesia1203 ай бұрын
Too good brother
@CodeWavewithShahHussain11 ай бұрын
But jwt be to scrent check krna ka liya br br new page reload phr datbase wala sa match krta ha?
@Ajmal_Hossain11 ай бұрын
Another potential concern might arise when dealing with stateful authentication in the context of load balancing.
@coderkashif Жыл бұрын
Bro you are great>>>
@knightcore40625 ай бұрын
im facing problem regarding non existing authorization header in server side gives Cannot read properties of undefined (reading 'split'), though using res.set('Authorization', `Bearer ${token}`); inside handleUserLogin async function to set the valus, help me to debug it any one...
@rztutul88246 ай бұрын
Thank you so much bro
@amandeep-pg3vb3 ай бұрын
I didn't get authorization in req.headers, where am I wrong?
@learner5839 Жыл бұрын
Sir I am sending cookie by res.cookie and 'm able to see that cookie in network but not in application-->Cookies
@DineshKumar-gt7xm7 ай бұрын
Did you find any solution for this problem?
@BiGryuuu5 ай бұрын
@@DineshKumar-gt7xm did you?
@NOVAGAMING_084 ай бұрын
@@BiGryuuu add with credentials: true in your frontend code and in backend use cors ( app.use(cors({ origin : '*', credentials: true, })) I think this might work for you
@abhishekgautam22899 ай бұрын
kaise ho pankaj sir ham bhi yhi se padh rhe😁
@jackma95288 ай бұрын
sir in my code it is showing can't read the properties of undefined after i switched to response section after cookie section, i copied exactly your code but it is not working, if someone know please help
@gautammali7683 ай бұрын
Bhaiya please make a video on cross site in which authorization header is sent to the backend my malicious website and produce hacking in the backend :)
@ApurvaKalvadeSDE11 ай бұрын
if one user logs in, but second user comes and copy your Authorization Bearer token or Cookie..... and that 2nd person then requests in the backend from his own laptop via the copied token/cookie. In this case, how to make it more secure ???? Can you please walk through this scenario ?
@Rahul-yr3up6 ай бұрын
He has said in his video that do not pass exact jwt token in cookie. Encrypt the token before passing it to the cookie
@reactjs-tutorial4 ай бұрын
how to get this code
@utkarshtenguria38368 ай бұрын
how we can take user information from tokens Piyush Garg
@utkarshtenguria38368 ай бұрын
but first time in mobile device we have to login how can we send token in request in first time does it not required?
@DozSparrow7 ай бұрын
First time we need to login, after successful login server provide us token and subsequent we use provided token by server to communicate server
@ajput00186 ай бұрын
bhaia do you have short notes of this lecture
@Rij-k6p6 ай бұрын
in browser based applications, in industry standard for authentication tokens are sent through cookies or response?
@theannonymous143024 күн бұрын
Even Google is using cookies and you still have doubt 😂
@nishaaa_maurya Жыл бұрын
In last, we use header base authentication, Will it work for browser? Because, it is not working for browser in my case.
@Vikassharma-rq5bh Жыл бұрын
Same.
@aazimsheikh2797 ай бұрын
I am not getting authorization in the headers. Why?
@snehapatidar31227 ай бұрын
why it showing this? C:\Users\toshiba\Desktop\codes ode js\URL shortcut project\index.js:50 res.redirect(entry.redirectURL) ^ TypeError: Cannot read properties of null (reading 'redirectURL') at C:\Users\toshiba\Desktop\codes ode js\URL shortcut project\index.js:50:21 at process.processTicksAndRejections (node:internal/process/task_queues:95:5) Node.js v21.7.3 [nodemon] app crashed - waiting for file changes before starting...
@rishabhgupta98467 ай бұрын
Are you checking whether entry is null or not
@fatimaiqra21693 ай бұрын
Thanks
@challarashmitha558 ай бұрын
How can I get a token set in cookies in browser
@rishabhkedia93047 ай бұрын
19:35 reponse
@shubhamdas65199 ай бұрын
Thanks for the video sir
@jatinsharma3792 Жыл бұрын
I am looking for the content on CSRF and CSP Headers in JAVA Filter. If you could provid it that would be really helpful.
@ApurvaKalvadeSDE11 ай бұрын
ye Manish Paul bhai hai kya ??
@gopinathk1485 Жыл бұрын
Very useful video Piyush, but it could be helpul if you are teaching in English
@ManojTudu-sc5rb Жыл бұрын
Hi.. Need your help.. My req.headers does not contain authorization property
@Solo_playz11 ай бұрын
Bro! You have to set your headers on your own like this that contain Authorization property here is the example! const headers = { 'Authorization':'Bearer ', 'Content-Type:'application/json', // just an example property you can add more property as you want! } now you can pass this header with your fetching methods like fetch or Axios Hope you get it
@pratyushpragyey70028 ай бұрын
well if you're using postman then you've to set the bearer token by going in headers
@ibntofajjal Жыл бұрын
Thank's man
@ArpitJain-kc7bl8 ай бұрын
What is the need to send bearer, as it is getting split
@pratyushpragyey70028 ай бұрын
It's a way in which bearer token is designed
@ArpitJain-kc7bl8 ай бұрын
@@pratyushpragyey7002 is it just to make code readable or it is compulsory
@pratyushpragyey70028 ай бұрын
@@ArpitJain-kc7bl you don't have a choice to include it or not it's just how it's written whenever you'll pass the token in headers it will always be attached with word bearer
@ArpitJain-kc7bl7 ай бұрын
@@pratyushpragyey7002 Okay brother thanks for clearing it
@ishikamalik418311 ай бұрын
excellent
@Ankit-xq3sl10 ай бұрын
Tenks😊 gruudev
@KirtanPatel55211 ай бұрын
still I got One error TypeError: Cannot read properties of undefined (reading 'split') if Anyone have solution for this...
@prateek_saxena210711 ай бұрын
getting same error. were you able to find the solution?
@KirtanPatel55211 ай бұрын
@@prateek_saxena2107 Not yet...
@pratyushpragyey70028 ай бұрын
because you've to set authorization property if you're using postman by setting bearer token
@RishiRajxtrim Жыл бұрын
Adhyapak Diwas ki Shubhkamnaein! 🙏😇
@piyushgargdev Жыл бұрын
Thank you so much 😄
@ridhamanand8519 Жыл бұрын
what are http only cookie ?
@nooneknowsme1370 Жыл бұрын
this authorization thing got me confused like cookies, tokens, headers and all.
@vinaykumarc41562 күн бұрын
bhai mene "split" ki jaga "spilt" likh diya aur uss error ko dund ne ke chakkar me mujhe 1/2 ghand lag gaya🥲🥲