Skip to main content

Posts

Showing posts with the label MVC Web API Authorization and Authentication

MVC Web API Authorization and Authentication

Hello everyone, I am going to share the code-sample to Authentication  and Authorization  the MVC.Net Web API 2 . ·          If Web API 2 Missing header then return 404 Bad request with Authorization Token - Missing messages. ·          If Web API 2 call is unauthorized then return 401 Unauthorized  with unauthorized user. ·          If Web API 2 call is invalid then return authorization Token - Invalid messages. ·          If Web API 2 request is valid then ok. There are fallowing steps to achieve the MVC API Authorization as given below. Step1 : Call APIs using AJAX request. this .getAddress = function (Ids) {       return $http({                      ...