Good resources on Authentication
Hey guys I am supposed to build a authentication system like when user logins with email/username or password and if account does not exist then sign up, forget password etc, i have to authenticate it via an api which is not built yet
I have to get the stuff ready so that when api is ready I can just plugin it in my application
I am new to this stuff and never done this so anyone know any good resources where I can learn this stuff
I am new to apis as well
I have to do this via json
4 Replies
in dotnet, you can use Identity for authentication that can handle all this stuff for you
Introduction to Identity on ASP.NET Core
Use Identity with an ASP.NET Core app. Learn how to set password requirements (RequireDigit, RequiredLength, RequiredUniqueChars, and more).
for dotnet related stuff, the best learning resource is mostly Microsoft Learn
will look into it thanks @Salmon