I am using
$signed_request = $facebook->getSignedRequest();
and it gives me back Array ( [algorithm] => HMAC-SHA256 [code] => NO.XYZLONGSTRING [issued_at] => timestamp [user_id] => userid )
Now as per documentation, I am trying to retrieve the user age range or locale from this but I am unable to. I have tried the php code
function parse_signed_request($signed_request, $secret) {
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
// decode the data
$sig = base64_url_decode($encoded_sig);
$data = json_decode(base64_url_decode($payload), true);
if (strtoupper($data['algorithm']) !== 'HMAC-SHA256') {
error_log('Unknown algorithm. Expected HMAC-SHA256');
return null;
}
// check sig
$expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true);
if ($sig !== $expected_sig) {
error_log('Bad Signed JSON signature!');
return null;
}
return $data;
}
function base64_url_decode($input) {
return base64_decode(strtr($input, '-_', '+/'));
}
and also code in here Facebook signed request problem
I am unable to get the A JSON array containing the locale string, country string and the age object (containing the min and max numbers of the age range) for the current user as mentioned in here https://developers.facebook.com/docs/appsonfacebook/tutorial/
The data in this case just does not return anything.