$statesecret is not passed to the decode method at line 39:
`
// verification using 'auth' is built-into the JWT method
$QS = json_decode(json_encode(JWT::decode($_REQUEST['jwt'])), true);
`
Adding $statesecret elliminates decode error:
`
// verification using 'auth' is built-into the JWT method
$QS = json_decode(json_encode(JWT::decode($_REQUEST['jwt'], $statesecret)), true);
`
$statesecret is not passed to the decode method at line 39:
`
`
Adding $statesecret elliminates decode error:
`
`