CRUD in Web API Using SQL Server and C#

Before we move on to discuss the web API, we should know what API means is. Application Programming Interface (API) is a collection of protocols, tools, and definitions that are used to create applications. API exposes interfaces which can be used to access the information of a service. Back to the Web API, it simply... » read more

Basic Authentication in Web API

Authentication is the process of identifying the users based on their credentials, such as username and password. This restricts unauthorized people getting access to data or applications. There are 3 common ways of ensuring authentication. The basic method is to validate the username and password. Next method is to use smart cards and the final... » read more