Logs
The ezoidc server outputs logs to stdout in JSON lines format.
Reasons
If the provided token cannot be validated, the status
will be set to 401 and the reason
field will include the reason.
Reason | Description |
---|---|
invalid:jwt | The token is empty or malformed. |
invalid:kid | The token was signed with an unknown key. |
invalid:claims:iss | The issuer is invalid or the server is not configured to accept tokens from this issuer. |
invalid:claims:aud | The token is not intended for an audience configured by the server. |
invalid:claims:exp | The token is expired. |
invalid:claims:nbf | The token is not valid yet. |
invalid:claims:iat | The token was issued in the future. |