I am integrating google wallet on my website, and didn't find the answer to this anywhere. Can the "exp" parameter of the JWT token be more than an hour? I see on every guide or library:
'exp' => time() + 3600,
But, could it be something else? like 2 hours:
'exp' => time() + 7200,
Thanks!
From the spec
I personally haven't tested the "max" that Google will allow. However, it could matter to you more - re: how long is that specific transaction supposed to be "good". (When) should it expire/be invalidated? Should I be worried of replays?
Hth...