BREAKING change. The following types are changed from interface to struct type: - AccessTokenClaims - IDTokenClaims - IntrospectionResponse - UserInfo and related types. The following methods of OPStorage now take a pointer to a struct type, instead of an interface: - SetUserinfoFromScopes - SetUserinfoFromToken - SetIntrospectionFromToken The following functions are now generic, so that type-safe extension of Claims is now possible: - op.VerifyIDTokenHint - op.VerifyAccessToken - rp.VerifyTokens - rp.VerifyIDToken
29 lines
386 B
JSON
29 lines
386 B
JSON
{
|
|
"iss": "zitadel",
|
|
"sub": "hello@me.com",
|
|
"aud": [
|
|
"foo",
|
|
"bar"
|
|
],
|
|
"jti": "900",
|
|
"azp": "just@me.com",
|
|
"nonce": "6969",
|
|
"c_hash": "hashhash",
|
|
"acr": "something",
|
|
"amr": [
|
|
"some",
|
|
"methods"
|
|
],
|
|
"sid": "666",
|
|
"scope": [
|
|
"email",
|
|
"phone"
|
|
],
|
|
"client_id": "777",
|
|
"at_use_nbr": 22,
|
|
"exp": 12345,
|
|
"iat": 12000,
|
|
"nbf": 12000,
|
|
"auth_time": 12000,
|
|
"foo": "bar"
|
|
}
|