zitadel-oidc/pkg/oidc/regression_data/oidc.accessTokenClaims.json
Tim Möhlmann 11682a2cc8 oidc: add regression tests for token claim json
this helps to verify that the same JSON is produced,
after these types are refactored.
2023-03-02 16:45:15 +02:00

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"
}