Tag: Web API

  • Token Based Authentication for Web API’s

    Securing ASP.NET Web API using Custom Token Based Authentication Providing a security to the Web API’s is important so that we can restrict the users to access to it. We can provide the security in two different ways: Basic authentication. Token based authentication. In this blog, we will discuss how we can implement token based…

  • Create Restful service using Web API

    What is Asp.Net Web API? Asp.Net Web API is a framework for building HTTP services that can be consumed by a broad range of clients including browsers, mobiles, iphone and tablets. It is very similar to ASP.NET MVC since it contains the MVC features such as routing, controllers, action results, filter, model binders, IOC container…