Systems Development
Systems Development

Reputation: 31

Token Based Authentication MVC 5

I currently have an app built in MVC 5 that uses individual authentication and has Web API access if the user is authenticated within the browser using their username and password.

I am looking to now add in the ability for Token based authentication so that users can GET and POST data to my app from other applications they utilize. I have been searching forums but unable to find a great method that explains the entire process.

Does anyone have any tutorials for this?

Upvotes: 1

Views: 3513

Answers (1)

Tia
Tia

Reputation: 54

Use JWTs. This is a fast and secure way to let users authenticate and act securely with the APIs of your solution

see here

Upvotes: 2

Related Questions