Replies: 1 comment 9 replies
-
This seems an interesting issue: do you mind creating a test that reproduces it in a PR? |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We ran into an issue when updating our site to PHP 8.1 and its dependencies. The generated access tokens had an
iat
set in the future. After a lot of digging, it seemed that the cause for us was that ourserialize_precision
setting inphp.ini
was set to8
. The date inputs going into the token were correct, but when converted to a float and then JSON encoded, the date could be modified. I'm pointing this out to both check my understanding and help out anyone that could run into a similar issue.Beta Was this translation helpful? Give feedback.
All reactions