I have a web token which decodes to the following:
{
typ: "JWT",
alg: "HS256"
}.
{
iat: 1435688301,
iss: "localhost",
data: {
user_id: 2
}
}.
[signature]
I have this stored in a variable $data, and have no idea how to access the 'iat' value, or the 'user_id'. Can anyone help me out?
I've tried
$issuanceDate = $data['iat'];
But that doesn't seem to be working. I need the user id too, but that is nested in $data.data.
Any help would be much appreciated, thanks.