I have had a working application inside a page tab for the past 2 weeks using the PHP SDK, about an hour ago the application started doing a redirect loop when checking if the page was liked or not.
The weird part is, that i am able to print the parsed signed request array just fine, but just before the condition to check it, it fails. (1 line above would not print the array).
If I disable this check I am getting redirected to the real app URL (my host) and not the app URL or the page tab.
Here is the code I use to parse and check the signed request:
$secret = "xxxxxxxxxxxxxxxx";
// parse the signed request
$decodedSignedRequest = parse_signed_request_outside($_REQUEST['signed_request'], $secret);
// check if the request contains the page liked node
if (!isset($decodedSignedRequest['page']['liked'])) {
header("location: http://www.facebook.com/pagename?sk=app_xxxxxxxxxxxxxx");
exit();
}
// signed request parser helper functions
function parse_signed_request_outside($signed_request, $secret) {
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
// decode the data
$sig = base64_url_decode_outside($encoded_sig);
$data = json_decode(base64_url_decode_outside($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_outside($input) {
return base64_decode(strtr($input, '-_', '+/'));
}
Few things to note:
Mod_Rewrite is disabled.
the header "hack" is being sent on the top of the page
header('P3P:CP="IDC DSP COR ADM DEVi TAIi PSA PSD IVAi IVDi CONi HIS OUR IND CNT"');
Is this caused by Facebook bug? Is there a way to workaround it?
Thanks