Done thanks Oauth is for authorization but people used it for authentication so openid standardizes authentication with oauth by having the auth server (like google) return an ID with the auth token Openid connect is same flow as oauth but when you redirect user to auth, you include “openid” in the scopes that you pass as query params This indicates to auth server that you want authentication ID not just authorization access token When auth code is exchanged for tokens you also get an ID token which you can use to get info about users identity When designing an oauth server should use fine grained scope Refresh token is also returned which allows the application to request a new token when the one you have expires Need to pass client id and secret when getting new token
For the full code implementation, checkout - th-cam.com/video/dyZmsz6usWk/w-d-xo.html
Done thanks
Oauth is for authorization but people used it for authentication so openid standardizes authentication with oauth by having the auth server (like google) return an ID with the auth token
Openid connect is same flow as oauth but when you redirect user to auth, you include “openid” in the scopes that you pass as query params
This indicates to auth server that you want authentication ID not just authorization access token
When auth code is exchanged for tokens you also get an ID token which you can use to get info about users identity
When designing an oauth server should use fine grained scope
Refresh token is also returned which allows the application to request a new token when the one you have expires
Need to pass client id and secret when getting new token
The music was distracting in the previous ones, but the content is clear and on point! 👏
The way you simplified this is honestly genius. I am a fan.
I love how u explain things, first problem then solution. it make more sense rather just explaining concept
The way you teach is great! I think your channel will grow a lot with the quality content you provide!
I look forward to more great videos from you!
Thanks a lot for the kind words, really appreciate them :) I've been super busy lately but more videos are coming soon, stay tuned!
Speaking about your 3rd presentation as compared to the previous ones: the further the better. Thanks.
I really appreciate your approach to teaching. Thank you!
Great content. I am surprised the view count is so low, it should be in 100Ks.
Thanks! I hope it get's there someday :D
Very enlightening video, thanks for creating that.
Appreciate your effort.
You are a great teacher.
I love your teaching style, it is so unique, Good Job
Thank you for the kind words! Really appreciate it :)
Great videos so far, keep uploading.
Yes we need implementation details of each topic it be really great if you start that
precise and useful, thanks a lot for sharing :)
Glad you enjoyed it!
how is access token validated at api level?
great video
thank you !
Thanks for this video!
I would like to see a full implementation
Check out the full implementation here - th-cam.com/video/dyZmsz6usWk/w-d-xo.html