The Scopes field in accessTokenClaims should be a SpaceDelimitedArray, in order to allow for correct unmarshalling. Fixes #318 * adjust test data
23 lines
317 B
JSON
23 lines
317 B
JSON
{
|
|
"iss": "zitadel",
|
|
"sub": "hello@me.com",
|
|
"aud": [
|
|
"foo",
|
|
"bar"
|
|
],
|
|
"jti": "900",
|
|
"azp": "just@me.com",
|
|
"nonce": "6969",
|
|
"acr": "something",
|
|
"amr": [
|
|
"some",
|
|
"methods"
|
|
],
|
|
"scope": "email phone",
|
|
"client_id": "777",
|
|
"exp": 12345,
|
|
"iat": 12000,
|
|
"nbf": 12000,
|
|
"auth_time": 12000,
|
|
"foo": "bar"
|
|
}
|