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 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.

share|improve this question
Three things to check: A) the app secret is correct in your code B) if it's a canvas app, you have 'POST for canvas' enabled in advanced app settings C) The callback URL you're using for your canvas app must accept the POST request directly - some URLS will redirect (e.g. example.com redirecting to example.com/ ) and lose the signed request information – Igy Mar 29 '12 at 17:14

1 Answer

up vote 0 down vote accepted

Instead of getting in to this Facebook code debugging, I just used the Javascript sdk.

share|improve this answer

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.