I'm trying to deauthorize my Facebook using the Deauthorize Callback URL. I'm able to ping the Callback URL, but somehow, not able to fetch the facebook user_id.
Below is my 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, '-_', '+/'));
}
if(isset($_REQUEST['signed_request']))
{
$result =parse_signed_request($_REQUEST['signed_request'],"MyAppSecret");
$myFile = "deauthorize.txt";
$fh = fopen($myFile, 'w') or die("can't open file");
fwrite($fh, $result["user_id"] . "\n");
fclose($fh);
}
The deauthorize.txt file is created but doesn't have any ID. I'm not getting if there is some problem in parsing the data? How can i store it into a file? I'm not able to echo anything, as the deauthorization call is sent from facebook servers and I can't see any output.
Any suggestion is appreciated.
Thank You