我正在使用从第三方 API 收到的身份验证令牌。我在下面给出了一个解码令牌的样本,
{
"nbf": 1564128888,
"exp": 1564132488,
"iss": "http://example.com:5002",
"aud": "http://example.com:5002/resources",
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress": "Micky@gmail.com",
"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/name": "Micky Mouse",
"amr": ["custom"]
}
我正在努力阅读 javascript 中的“名称”声明。如何在 javascript 或 typescript 中读取该属性?