simplesamlphp / simplesamlphp-module-oidc

A SimpleSAMLphp module for OIDC OP support.
Other
45 stars 22 forks source link

access token JWT should use integers for iat, nbf, exp #170

Closed pradtke closed 2 years ago

pradtke commented 2 years ago

The access token we generated is using floats for the unix seconds, resulting in values like

"iat": 1639613073.552289, "nbf": 1639613073.552293, "exp": 1639616673.533563,

JWT are suppose to use whole numbers.

Low priority since we are the only consumer of our own access token.