Popular posts from this blog
JWT - Token based authentication
Download JSON Web Token ( JWT ) with Web API . The modern approach for authenticating a user is through token based authentication scheme. It relies on signed tokens which are sent by user to server with each request. you put all claims in json web structure. you sign structure using asymmetric key and encode whole thing in Base64. validating signature,issuer and audience
WEB API CALL FROM CLIENT MVC C#
Download _________________________________________________________________________________ Step1: create [MVC client project] Step2:// User.cs [Model class] public class User { public string UserName { get; set; } public string Password { get; set; } } Step3://CALLPACKAGE.cs class public class CallPackage { public CallPackage() { Encoding = DefaultEncoding; EndPointUrl = string.Empty; Parameters = string.Empty; Method = HttpVerbs.Get; ContentType = "application/json"; PostData = string.Empty; } ...
Comments
Post a Comment