Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSHARP

How to decode Microsoft Local token in service

// Getting Decoded Token from the HTTP context
// May very according to place where you are using it.
// You can use it in Controller/AttributeFilter/Middlerware.

var identity = HttpContext.User.Identity as ClaimsIdentity;

// Gets list of claims.
IEnumerable<Claim> claims = identity.Claims;

// Can find any value from claim by changing below code
var Name = claims.Where(x => x.Type == ClaimTypes.Name).ToArray();

// Do the next opertaion
 
PREVIOUS NEXT
Tagged: #How #decode #Microsoft #Local #token #service
ADD COMMENT
Topic
Name
9+8 =