Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Add a claim to JWT as an array?

Using thinktecture JWT authentication resource owner flow,i use the claims part of JWT for client consumption. My question is that if its possible to add claim in identity server and decode it as an array in client.

There is no ClaimTypeValues for array type.

As a workaround:

var user = IdentityServerPrincipal.Create(response.UserName, response.UserName);
                user.Identities.First()
                               .AddClaims(
                                        new List<Claim>()
                                        {
                                            new Claim(ClaimTypes.Name, response.UserName),
                                            new Claim(ClaimTypes.Email, response.Email),
                                            new Claim(FullName, response.FullName),
                                            new Claim(AuthorizedCompanies,JsonConvert.SerializeObject(response.AuthorizedCompanies))
                                        });

return new AuthenticateResult(user);

I add claim as json array to claim for AuthorizedCompanies and parse it in client side.What is the design pattern here if any ?

like image 495
sercan Avatar asked Dec 03 '14 07:12

sercan


3 Answers

Speaking from personal experience, it is easier to inter-op with claim stores when the ValueType is always type "String". Although it may seem counter intuitive when you know you are dealing with a complex type, it is at least simple to understand.

The way I have approached this need for an array is to have my application code expect multiple claims to be present for the claim type in question, and keep each claim value of a simple type.

Examp:

var authorizeCompanies = identity.FindAll(AuthorizedCompanies).Select(c => c.Value); 

And of course, you also add them that way:

identity.AddClaim(ClaimTypes.Name, response.UserName); identity.AddClaim(AuthorizedCompanies, "CompanyX"); identity.AddClaim(AuthorizedCompanies, "CompanyY"); identity.AddClaim(AuthorizedCompanies, "CompanyZ"); 

IdentityServer supports this model out of the box. When generating a token for an identity such as this, it automatically writes the values for that claim out as an array.

{     "aud": "Identity Server example/resources",      "iss": "Identity Server example",      "exp": 1417718816,      "sub": "1234",     "scope": ["read", "write"], // <-- HERE     "foo": ["bar", "baz"],      // <-- HERE TOO!     "nbf": 1417632416 } 

This approach to claims is in contrast to assuming all claims are a one-to-one mapping of type -> value.

like image 162
Crescent Fresh Avatar answered Sep 20 '22 10:09

Crescent Fresh


I was having a similar issue, in my case I have claims that are arrays but sometimes only have one item depending on user permissions. In that case if you use new Claim("key", "value") to add them they will be strings when there is a single object and arrays when > 1 which was unacceptable.

A better solution in this case is to use JwtPayload to build the JwtSecurityToken object.

var payload = new JwtPayload     {         { "ver", version },         { "iss", "example.com"},         { "iat", DateTimeOffset.UtcNow.ToUnixTimeSeconds()},         { "exp", DateTimeOffset.UtcNow.AddHours(1).ToUnixTimeSeconds()},         { "aud", myExampleStringList }     }; var token = new JwtSecurityToken(new JwtHeader(_signingCredentials), payload); 

This works on .netcore 3.0 using System.IdentityModel.Tokens.Jwt v3.0 but I can't confirm for other versions.

like image 30
WillDoDatDevDoe Avatar answered Sep 18 '22 10:09

WillDoDatDevDoe


use JsonClaimValueTypes as claim type

var tokenDescriptor = new SecurityTokenDescriptor
   {
    Subject = new ClaimsIdentity(new Claim[]
     { new Claim("listName", list != null ? JsonSerializer.Serialize(user.RoleName) : string.Empty,JsonClaimValueTypes.JsonArray)
    }}
like image 24
shahabas sageer Avatar answered Sep 17 '22 10:09

shahabas sageer