EndPointCorp / end-point-blog

End Point Dev blog
https://www.endpointdev.com/blog/
17 stars 65 forks source link

Comments for Implementing Authentication in ASP.NET Core Web APIs #1874

Open sethjensen1 opened 2 years ago

sethjensen1 commented 2 years ago

Comments for https://www.endpointdev.com/blog/2022/06/implementing-authentication-in-asp.net-core-web-apis/ by Kevin Campusano

To enter a comment:

  1. Log in to GitHub
  2. Leave a comment on this issue.
Screaminlean commented 1 year ago

Loved the article, can the API-Key implementation use Roles and policies? Add the user claims / roles? By far the best article I have seen on this subject. Thank you!

ssezya commented 1 year ago

Hello, thanks for the article! The token lifetime check does not work unless ClockSkew is reset.

DaCheeseMan commented 1 year ago

Wonderful article! Much appreciated. One small notice is the sub-claim when adding claims. That should be a unique identifier for the user, but you get an A+ from me!

sashasanchoo commented 1 year ago

Hello. Thank you for this article !

MrChriZ commented 1 year ago

Love this article thanks very much! As someone that doesn't have any experience in PostGres SQL but do have experience of EF with SQL Server it was very easy to instead change this demonstration to use SQL Server.

JacyGames commented 1 year ago

I want to say thank you for the great job!

ablazquez92 commented 1 year ago

Thank you for this article, i love you <3

blanks88 commented 1 year ago

Pretty helpful; thanks so much. Great work!

MrChriZ commented 1 year ago

Please could you add refresh tokens to the article. Thanks

pouyaSamie commented 1 year ago

thank you for the articel unfortunately Microsoft.AspNetCore.Identity has been deprecated. and I'm looking for a new replacement.

rkorgal commented 11 months ago

It is very informative and helpful for people working on the Authentication and Authorization functionality for the first time. faced some minor issues as I was using .net 7.0, Referred to https://www.infoworld.com/article/3669188/how-to-implement-jwt-authentication-in-aspnet-core-6.html to sort out those issues.

tugbadokumaci commented 9 months ago

Thank you for this crystal clear explanation.

IVelychko commented 4 months ago

Thank you for the great example of JWT Authentication in ASP.NET Core, really needed this.