Secure a .NET Core API with Bearer Authentication

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ธ.ค. 2024

ความคิดเห็น • 333

  • @radeksendecki9922
    @radeksendecki9922 2 ปีที่แล้ว +1

    It's October 2022 but for me it's still the best free material about a practical approach to learn authentication in .NET on the internet.
    Great job. Congratulations and thank you!

    • @vipinsingh-ji8dj
      @vipinsingh-ji8dj 7 หลายเดือนก่อน

      Which channel best for paid version?

  • @DChristop
    @DChristop ปีที่แล้ว

    Les Jacson σε ευχαριστούμε που υπάρχεις και μας δίνεις τόσες χρήσιμες συμβουλές!!

  • @SpoderSuperhero
    @SpoderSuperhero 3 ปีที่แล้ว

    This is honestly the best .NET Core channel out there.

  • @maximlejaeghere1730
    @maximlejaeghere1730 4 ปีที่แล้ว +1

    Watch out on minute 31. Azure added an extra field when creating a client secret. Make sure you copie the value and not the ID!!
    Super video thank you so much.

  • @jeffpetrie5191
    @jeffpetrie5191 4 ปีที่แล้ว

    Ok, Les, you got me! I spent 2 days on your 3 hr. API video and transferred all that knowledge to my big project, works Great! Now adding the tokens. Lots of little bumps that force a good developer to understand their environments, like sometimes VS Code just gets lost and you have to restart it, all good. I love your stuff is CURRENT! 2017 is ancient times in technology;-) Enjoy the wine, wish I could deliver it personally and share a bottle to thank you. I think that would be a riot! Keep going and good luck! Oh yes, you should get yourself a green screen;-)

  • @blinkskaterkc
    @blinkskaterkc 4 ปีที่แล้ว

    After searching for many many hours on this topic, with no luck, I came across this video. You explained things clearly and made a lot of sense out of a confusing topic. Many thanks!!

  • @richarddufour
    @richarddufour 2 ปีที่แล้ว +1

    Absolutely love the way you've explained all of this. I've been googling, watched other videos, tutorials, but nothing comes even close to what you've done here. Cannot thank you enough!

    • @richarddufour
      @richarddufour 2 ปีที่แล้ว

      Would love for you to have a video on setting up an Azure WebApp running behind an Azure Front Door.

  • @svetlin2010
    @svetlin2010 4 ปีที่แล้ว

    The best video ever. Very well explained. What is missing is additional video in case you have swagger and you need to be able to test the API using AAD.

  • @brianhoskins1979
    @brianhoskins1979 3 ปีที่แล้ว +1

    [EDIT] - I forgot to say thank you for the video, extremely useful indeed!
    17:25 Regarding your advice not to use appsettings.json for production use. I can appreciate that there is a need to be careful with this during development: the application is on your local machine along with the appsettings.json file which reveals security critical information. And you certainly wouldn't want to commit that to git or any other version control.
    But once you've deployed to your production environment I feel like it's pretty safe to use appsettings.json. This is because the file is then on the server (be it Azure or somewhere else). Nobody else has access to it. And, if they do, it means they already have control of your server and therefore the security has already been compromised.
    So on local machine: be careful with appsettings.json as it contains secure information.
    On production (deployed to server): appsettings.json is OK.
    Do you disagree?

  • @sebastianayalavalderrama3269
    @sebastianayalavalderrama3269 3 ปีที่แล้ว

    Thank you Les for your time. I was getting crazy until I saw your video with the resourceId "/.default" . I missed this part. Thank you.

  • @bobbykaruturi2300
    @bobbykaruturi2300 4 ปีที่แล้ว

    Awesome step by step tutorial for authenticating .Net core API.

  • @boebawashere
    @boebawashere 4 ปีที่แล้ว +9

    Loved this video! Good explanation, my teachers could learn a lot from u!
    I did get an error at the end: "The remote certificate is invalid according to the validation procedure".
    But I got it working by adding this code right above making the httpClient:
    HttpClientHandler clientHandler = new HttpClientHandler();
    clientHandler.ServerCertificateCustomValidationCallback = (sender, cert, chain, sslPolicyErrors) => { return true; };
    The HttpClient then uses another constructer like this:
    var httpClient = new HttpClient(clientHandler);
    Thanks a lot! Subbed immediately ;)

    • @ThomasPoth
      @ThomasPoth 4 ปีที่แล้ว

      Thanks for sharing your solution.
      Imho this should be only necessary for local testing.
      BTW, thanks Les for your great work.

    • @mikeha
      @mikeha 4 ปีที่แล้ว

      I tried that, it didn't work, now I get Unauthorized back even though I did get the token

  • @JonOvereem
    @JonOvereem 4 ปีที่แล้ว +9

    Thank you for explaining everything so clearly. I’ve been wanting to learn this for a long time. Since I started watching your videos it finally starts to make sense to me.

    • @nicholasmohammad6961
      @nicholasmohammad6961 3 ปีที่แล้ว

      I dont mean to be offtopic but does someone know of a trick to log back into an Instagram account??
      I stupidly lost my login password. I would appreciate any tricks you can offer me.

  • @rakeshchauhan-op8qw
    @rakeshchauhan-op8qw 3 ปีที่แล้ว

    46:50 - music got me off the edge of my seat. The suspension was intense. Good video btw Les

  • @CognatioBestia
    @CognatioBestia 4 ปีที่แล้ว

    Great video! I'm a Sr Software Engineer (and manager) and found a lot of value in your video. Explained everything very well! Thanks for sharing!

  • @Ajmal_Yazdani
    @Ajmal_Yazdani 4 ปีที่แล้ว +5

    Les Jackson Sir. You save my lot of time. This is exactly what I have assigned to do. Superb!!!

  • @schoesa
    @schoesa 4 ปีที่แล้ว

    Awesome video, best teacher I have ever seen. Now I understand that whole bunch of Azure AD authentication via JWT Bearer Token in only 60 minutes. Thumbs up :-)

  • @HenryTsang
    @HenryTsang 4 ปีที่แล้ว +5

    Love your teaching style, very realistic and practical explanation. Thanks very much for making this video, you have demystified the Bearer Authentication a great deal

  • @sandeepsoni7162
    @sandeepsoni7162 4 ปีที่แล้ว +2

    Watching your video like some rocking movies....Great mate!

  • @ptry1000
    @ptry1000 3 ปีที่แล้ว

    This is really great. I watched about a million videos and blogs and all are talking bits and pieces but couldn’t get a complete picture. This session gave me the whole picture and finally I am able to successfully build a system for my purpose. Great explanations. Really loved !!!!

  • @manishjawarkar84
    @manishjawarkar84 4 ปีที่แล้ว

    The Key things in your Videos are Very well explained, Practical usage and content oriented. Thank you so much for sharing your knowledge.

  • @miklosnemeth8566
    @miklosnemeth8566 4 ปีที่แล้ว

    I am at 5:28, and I had no any info earlier, how this works, just what you show on your diagram, and scenario. Just for fun, from your diagram, I guess, the way it works is, that the JSON token is signed by one of Azure's private keys and the dot net core tool kit has the Azure's public key(s). This is how I'd implement this. I am looking for the end of the story, if I was right. Your videos are tremendously entertaining.

  • @naveenpatel8039
    @naveenpatel8039 2 ปีที่แล้ว

    I found a lot of value in this video and the way it is explained is very impressive! Great video. Loved it

  • @masimbagndadzibaya3616
    @masimbagndadzibaya3616 2 ปีที่แล้ว

    Thank you so much man, you just tabledout a lot for most of us. Awesome video

  • @randomvideos9444
    @randomvideos9444 4 ปีที่แล้ว

    Wow! How easily you have explained this complicated topic. Thanks for sharing this video.

  • @davidlingier579
    @davidlingier579 3 ปีที่แล้ว

    Nice job, thanks for sharing your knowledge! From now on "Les is more for sure".

  • @VikInks
    @VikInks 4 ปีที่แล้ว +1

    Thank you very much for your videos, I'm a student as an IT Dev, and your the best teacher I could ask for.

    • @binarythistle
      @binarythistle  4 ปีที่แล้ว +2

      Greetings from Melbourne Maxime! Thanks for the lovely comment - I really appreciate it. Cheers, Les

  • @moshikof7778
    @moshikof7778 3 ปีที่แล้ว

    well explained, even if im not azur developer, the concepts are well explained. keep going with the good work

  • @abp07082007
    @abp07082007 ปีที่แล้ว

    Wonderful video, very nicely explained, This was really helpful to me. Thank you.

  • @jaifranhernandez3901
    @jaifranhernandez3901 4 ปีที่แล้ว +2

    I'm going to keep the track on this season, great series of tutorials. Awsome job man, just awsome!

  • @ayushjoshi2367
    @ayushjoshi2367 3 ปีที่แล้ว

    By far, the best tutorial on authentication. Thank you so much for this amazing tutorial.

  • @lokeshmaganti5524
    @lokeshmaganti5524 4 ปีที่แล้ว +2

    Pretty neat explanation in layman terms and been searching for this kind of video...thank you so much.

  • @jono261970
    @jono261970 4 ปีที่แล้ว

    Fantastic video - it's nice to follow a video through to the end and everything works! - I added the token to Postman and received a status 200 OK - looking forward to S3 E2 - thanks!

  • @matchchow7648
    @matchchow7648 4 ปีที่แล้ว

    It's a very excellent video to explain such complicated topic and used the easiest way to demo how to achieve most of requests as we have to make sure them running in demon mode! thanks!

  • @DaydreamtombLP
    @DaydreamtombLP 4 ปีที่แล้ว +63

    I would be interested in third party sign in (Twitter, Google, etc) and associating that sign in with an application user. For example a user might have a profile in our application, and that profile should be associated with their third party sign in. Hope that makes sense. Keep up the great videos.

    • @lukasostar3008
      @lukasostar3008 4 ปีที่แล้ว

      Yes, this, PLEASE

    • @MB-nw5sz
      @MB-nw5sz 4 ปีที่แล้ว

      Yes, i agree - a user sign in tutorial would be fantastic :) Thanks for the helpful video

    • @harishgk2947
      @harishgk2947 3 ปีที่แล้ว +2

      @Les Jackson, please post an video on OAuth

    • @developersamim786
      @developersamim786 3 ปีที่แล้ว

      Yes, exactly we need this

  • @asadali118
    @asadali118 4 ปีที่แล้ว +1

    That is a great video tutorial. Thanks for explaining everything in a detailed manner. Looking forward to seeing more videos from you.

  • @ronaldabellano5643
    @ronaldabellano5643 4 ปีที่แล้ว

    I like your other videos that have broken the parts of your video, it's easy to follow because I will know what topic you're talking to that point. It's hard to watch the video for more than 15 minutes.

  • @duck1girl
    @duck1girl 4 ปีที่แล้ว

    Thank you so much. I have taken up learning about securing an Api and this video was a great beginning.

  • @vikass1078
    @vikass1078 2 ปีที่แล้ว

    Excellent tutorial. Thanks a lot for demonstrating the practical approach.

  • @rajanbabu033
    @rajanbabu033 ปีที่แล้ว

    Great Video. Thanks for creating such a wonder video which is easily understandable.

  • @runek75
    @runek75 3 ปีที่แล้ว

    I immediately hit subscribe just by looking at the shelf in the background :) my kinda guy. Pluss, ofcourse, the content seems spot on for me (after 5 minutes in)

  • @byuidan
    @byuidan 4 ปีที่แล้ว

    First time seeing your videos... subscribed to your channel in the middle of watching the video. Great content and great delivery! I'll look through to see some of your other titles and look forward to what you do in the future. Thanks for the great work.

  • @JitendraGupta-lc6de
    @JitendraGupta-lc6de 4 ปีที่แล้ว

    Thank you Les. This is really very helpful video and you explained every step very well . I was very much confused regarding this azure active directory steps . Now understand very well. I would love to watch your more videos.Thank you again.

  • @stephenholmes7585
    @stephenholmes7585 4 ปีที่แล้ว

    Super informational video. Followed it along in VSCode and although I had some issues in Azure (Granting API access was greyed out), it all worked and I can say I learned something very useful! Thanks for sharing!

  • @snowke5095
    @snowke5095 3 ปีที่แล้ว

    Thank you for putting this video together. This was especially relevant to something I am working on now and helped clarify a topic I was finding otherwise confusing when trying to read through the documentation. This video made is simple and straightforward. I've liked and subscribed, thank you again!

  • @naveenthallam145903
    @naveenthallam145903 3 ปีที่แล้ว +1

    Thank you so much for the crystal clear explanation. I was able to follow without any problem. Thanks once again for the great videos. Could you please do some videos on Microsoft Azure Services for Developers.

  • @hetallcc
    @hetallcc 4 ปีที่แล้ว

    Hi Les,
    Just wanted to say thank you for making this video. This what i need to figure it out the Authentication flow on Azure Ad.

  • @soucianceeqdamrashti8175
    @soucianceeqdamrashti8175 4 ปีที่แล้ว

    I went through all the steps. Wounderfully explained! Keep up the hard work!

  • @josephcorbett7805
    @josephcorbett7805 3 ปีที่แล้ว

    Thanks for putting this together! It really helped clarify a lot of things for me.

  • @csalgo7345
    @csalgo7345 3 ปีที่แล้ว

    Greatest .net core tutorial out there!

  • @rhmirani4367
    @rhmirani4367 4 ปีที่แล้ว

    Excellent and well explained one of the complicated topic, great work!!

  • @nileshv123
    @nileshv123 4 ปีที่แล้ว +1

    Great video Les....I have been following your videos and found them extremly crisp and to the point without rushing in....It would be great if you did video on a production quality code for a small microservice app which would include Authentication / Authorization, Unit Testing etc. I know it might be a long video, but still it might be of great help...Thanks for your effort mate...

  • @starman9000
    @starman9000 4 ปีที่แล้ว

    Very Satisfying video! content cleared laid out! I enjoyed and learned thoroughly! Best tutorial better than Udemy and Plural sight content! Thank you, Subscribed!!

  • @DavidEvans-uj3uw
    @DavidEvans-uj3uw 4 ปีที่แล้ว +2

    Another great video from Les. I enjoy his teaching style and clear explanations. But I had to ditch this approach for securing the API I'm building because I cannot see how to set up user roles with this approach. I'm probably missing something simple, but it's throwing me for a loop. I would love to see a video showing how to set up user login and adding user role claims to the JWT token in Azure.

  • @yajuvender99
    @yajuvender99 3 ปีที่แล้ว

    Superb Video Les!! Thank you soo much for explaining in detail.

  • @soucianceeqdamrashti8175
    @soucianceeqdamrashti8175 4 ปีที่แล้ว

    Like your videos and style a lot! Will for sure buy your book in the near future! Thanks for the awesome material!

  • @sandipkurwale5050
    @sandipkurwale5050 4 ปีที่แล้ว

    Thank you so much ... i loved it .. tried the same with Azure CLI since I wasn't having an access to Azure AD ... had a hard time with command line but now i can relate this stuff and search for precise Azure CLI commands ... Thanks again..

  • @tauqirchaudhry2876
    @tauqirchaudhry2876 4 ปีที่แล้ว +1

    Man that was cool - I just happened to be working on exactly these implementations, great clarity, fun music.

    • @binarythistle
      @binarythistle  4 ปีที่แล้ว +1

      Glad it was helpful!

    • @jaydev1263
      @jaydev1263 3 ปีที่แล้ว

      @@binarythistle 25:56 you missed the "/" between the values in authority....man i was so confused for an hour that why this is not working just for me

  • @cycostallion
    @cycostallion 3 ปีที่แล้ว

    Fantastic!!
    This was a great tutorial coupled with lucid explanation.

  • @vinothkumar9680
    @vinothkumar9680 3 ปีที่แล้ว

    Wonderful session @Les

  • @fazilb195
    @fazilb195 4 ปีที่แล้ว

    Wow this is awesome.. it'd be really helpful if you could make a series on this topic with other types of clients too. Loved it Les. Thank you so much

  • @arcsha2336
    @arcsha2336 4 ปีที่แล้ว +1

    Thank you so much Les!!. Excellent!1 Real world problem and you covered it perfect. Easy to understand.

    • @binarythistle
      @binarythistle  4 ปีที่แล้ว +1

      Cool glad it helped you out! Cheers, Les

  • @MrAndrewslaughter
    @MrAndrewslaughter 4 ปีที่แล้ว +1

    Great set of tutorials. The one improvement I would recommend is ditching that music at the start :)

    • @SuperCedric29
      @SuperCedric29 4 ปีที่แล้ว

      I find the music at the beginning actually pretty cool

  • @kulivers1998
    @kulivers1998 2 ปีที่แล้ว

    Greate video, thanks a lot, you have really good teaching skill

  • @primavera919
    @primavera919 2 ปีที่แล้ว

    thank you for the tutorial but do we have to use Azure Active Directory, can't we use the local Microsoft Identity management?

  • @albxdotcom
    @albxdotcom 4 ปีที่แล้ว +2

    Great video, best one I've seen so far. Thanks so much!! But can you explain what is the id property in the appRoles section, In your example it was "id": "6543b78e-0f43-4fe9-bf84-0ce8b74c06a3"

  • @parvkaurav7973
    @parvkaurav7973 4 ปีที่แล้ว

    Great Video. It saves me. I see a lot of implementation but they are quite complicated and not complete.

  • @parthgoyal8322
    @parthgoyal8322 3 ปีที่แล้ว

    So beautifully explained and coded. Thank You for making such stuff

  • @azer6849
    @azer6849 3 ปีที่แล้ว

    Thank you, Les, I would like to express my gratitude for your excellent video, and god bless you.

  • @SagnikSaha94
    @SagnikSaha94 4 ปีที่แล้ว

    Thank for nicely explaining the concept step by step, It was crystal clear :-).

  • @sathiyalr
    @sathiyalr 4 ปีที่แล้ว

    You are really fantastic Jackson..Thanks for this wonderful session

  • @kennygilmore1057
    @kennygilmore1057 4 ปีที่แล้ว

    I really enjoyed the video! Great job and VERY helpful.

  • @rossthemusicandguitarteacher
    @rossthemusicandguitarteacher 4 ปีที่แล้ว

    You are a complete champion my friend, thanks!

  • @ivanpesenti202
    @ivanpesenti202 4 ปีที่แล้ว

    Hi Les,
    thank you for your time and for sharing with us this video 🤞

  • @krmurthii7560
    @krmurthii7560 3 ปีที่แล้ว

    Thank u for good lesson. But, I have a question? All these are by using OAuth 2.0?

  • @adhivenkatesh3431
    @adhivenkatesh3431 4 ปีที่แล้ว

    Jack, it was nice explanation,and cool to understand , thanks for the video.

  • @muslehhaj4164
    @muslehhaj4164 4 ปีที่แล้ว

    Thank you very much for the amount of information that you made easy for us and that saved a lot of time, but frankly I was looking forward to seeing an illustrative example of a safe verification method for user authorization as full stack example :). We all very grateful for your efforts.
    Best Regards

  • @neicaro
    @neicaro 4 ปีที่แล้ว +1

    I just finish :-)!! thank you a lot for all the tips, I really enjoy and learn with your way of teaching

    • @binarythistle
      @binarythistle  4 ปีที่แล้ว +1

      Hi Carolina! I'm so happy to hear that - great work! And thank you for your kind feedback. Take care, Les

    • @manishraj-it2qv
      @manishraj-it2qv 3 ปีที่แล้ว

      Hie, for me Grant permission button at 36:30 time , the button is disabled its not working can you tell me the reason

  • @masoodakhtar2848
    @masoodakhtar2848 3 ปีที่แล้ว

    Great job! very well explained, bit by bit..

  • @thesunilsun
    @thesunilsun 3 ปีที่แล้ว

    Les(s) is More, actullay ! .. Thanks again for the great video !! :)

  • @manishraj-it2qv
    @manishraj-it2qv 3 ปีที่แล้ว

    36:30, i am not able to grant the permission, my grant permission button is disabled. I have followed the same steps.

  • @ghkhellfire007
    @ghkhellfire007 ปีที่แล้ว

    fantastic sir,huge fan of you

  • @ANILKHANDEI
    @ANILKHANDEI 4 ปีที่แล้ว

    This is very informative video. thanks for sharing your experience and knowledge. I wanted to understand this sing long time Azure AD, and api auth together!!
    Can you create a video on best practices for how to store secure data like keys and passwords in vaults and access them in application ?

  • @junkmail6992
    @junkmail6992 2 ปีที่แล้ว

    Looks like what I need. Instead of Azure could this b done with on prem AD?

  • @GagandeepSingh-lz5bg
    @GagandeepSingh-lz5bg 3 ปีที่แล้ว

    Les thanks for the video. It was helpful.

  • @mwardell18290
    @mwardell18290 2 ปีที่แล้ว

    Great video. I am however confused as to wether this should be done in code or through something like azure api management?

  • @sergiobrascher4134
    @sergiobrascher4134 3 ปีที่แล้ว +2

    Very good tutorial! Could you make one with a SPA app consuming this API? Thanks from Brazil!

    • @rainron2664
      @rainron2664 3 ปีที่แล้ว

      Agree to this.. 👍☝️ plss.. sir.

  • @ThomasPoth
    @ThomasPoth 4 ปีที่แล้ว +1

    Thank you so much for sharing your knowledge on this channel.
    You made me a wise man :-)

  •  4 ปีที่แล้ว

    Great channel! Thank you Les! Keep up the good work

  • @quietudecafe9599
    @quietudecafe9599 2 ปีที่แล้ว

    does it matter the order in which you install the packages needed for the Config class?

  • @davidbennett7864
    @davidbennett7864 2 ปีที่แล้ว

    hi thanks for the excellent tutorial. The Api side working perfectly but when i try using the client code in a zamarin forms project i get alot of conflicts with system.numerics and a null exception on the builder.build. any help would be much appreciated

  • @taranjitsingh6477
    @taranjitsingh6477 4 ปีที่แล้ว

    Great job you just got a new sub
    Covered a good amount in a video while making it simple

  • @ChandreshMakwanaakapg
    @ChandreshMakwanaakapg 4 ปีที่แล้ว +1

    Hi Les, truly interesting, informative and well composed video, that reveals the underlying mechanism of Azure AD being, kind of a registrar of resources. Just one question. For iOS and Android applications also do we need to register the corresponding client apps ?

  • @ankitsachan1242
    @ankitsachan1242 4 ปีที่แล้ว +3

    Thank you for this amazing tutorial. I saw lot of tutorial on this topic but I can say without any second thought that this is d best. If you can make a video to use Google, Facebook or Twitter to authenticate our Web API it will be more helpful.

  • @HonorHasCome
    @HonorHasCome 4 ปีที่แล้ว

    Great Video! Can you plase tell me in which Video you have explained where to store the Credentials for the Production Environment? Thank you!

  • @3AgL3DeeJay
    @3AgL3DeeJay 3 ปีที่แล้ว

    Why are you not using VisualStudio directly on these types of projects?
    It seems so easier than to work with VSCode.

  • @2005bgva
    @2005bgva 4 ปีที่แล้ว

    Thanks Les fantastic video; Question: what is the link to manage "sensitive information" for production environments?

  • @nick11927
    @nick11927 4 ปีที่แล้ว +2

    Any chance of doing a video on user secrets or correctly storing sensitive information in the appsettings.json file?

    • @faceless9367
      @faceless9367 3 ปีที่แล้ว

      Did you find any solution?

  • @yogeswarank
    @yogeswarank 3 ปีที่แล้ว

    Thanks for great explanation. It works well for single tenant. It doesn't work for multi tenant (Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)
    ). Any configuration changes are required ?

  • @mehdin2222
    @mehdin2222 4 ปีที่แล้ว +2

    dear Les Jackson what if we do not want to use azure? can you just hit me with a suggestion please.

    • @2005bgva
      @2005bgva 4 ปีที่แล้ว

      @mehdinavab did you find an alternative?

    • @mehdin2222
      @mehdin2222 4 ปีที่แล้ว

      @@2005bgva No I did not