Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.