JWT:如何从声明中的特定键获取值列表。 C# Asp.Net 核心
JWT: How to get a List of Values from a specific Key in the Claims. C# Asp.Net Core
我正在使用这段代码从 JWT 中的声明中读取单个值。
return httpContext.User.Claims.Single(x => x.Type == "id").Value;
获取此声明的值:
"id": "b6dddcaa-dba6-49cf-ae2d-7e3a5d060553"
但是,我想读取一个具有多个值的键。
但使用相同的代码:
return httpContext.User.Claims.Single(x => x.Type == "groups").Value;
对于此声明:
"groups": [
"123",
"234"
],
我逻辑上收到以下错误消息:
System.InvalidOperationException: "Sequence contains more than one matching element"
找不到对应的方法。有人可以帮助我吗?
是因为Single()
, use Where()
而不是Single()
return httpContext.User.Claims
.Where(x => x.Type == "groups") //Filter based on condition
.Select(y => y.Value); // get only Value
Single()
:它returns一个序列的单个特定元素。 如果找到多个满足条件的元素,则抛出错误
引用ClaimsPrincipal.FindAll(Predicate<Claim>)
Retrieves all of the claims that are matched by the specified predicate.
IEnumerable<Claim> claims = httpContext.User.FindAll(x => x.Type == "groups");
IEnumerable<string> values = claims.Select(c => c.Value);
return values;
我正在使用这段代码从 JWT 中的声明中读取单个值。
return httpContext.User.Claims.Single(x => x.Type == "id").Value;
获取此声明的值:
"id": "b6dddcaa-dba6-49cf-ae2d-7e3a5d060553"
但是,我想读取一个具有多个值的键。 但使用相同的代码:
return httpContext.User.Claims.Single(x => x.Type == "groups").Value;
对于此声明:
"groups": [
"123",
"234"
],
我逻辑上收到以下错误消息:
System.InvalidOperationException: "Sequence contains more than one matching element"
找不到对应的方法。有人可以帮助我吗?
是因为Single()
, use Where()
而不是Single()
return httpContext.User.Claims
.Where(x => x.Type == "groups") //Filter based on condition
.Select(y => y.Value); // get only Value
Single()
:它returns一个序列的单个特定元素。 如果找到多个满足条件的元素,则抛出错误
引用ClaimsPrincipal.FindAll(Predicate<Claim>)
Retrieves all of the claims that are matched by the specified predicate.
IEnumerable<Claim> claims = httpContext.User.FindAll(x => x.Type == "groups");
IEnumerable<string> values = claims.Select(c => c.Value);
return values;