I am getting the following error again and again .. and I am not able to figure out what is wrong! All I did was that i copied and pasted the code from developers.facebook.com, and changed the app id and fb secrey key which i have crossed out for these questions!
The error is:
Bad Request Your browser sent a request that this server could not understand. Size of a request header field exceeds server limit. Referer /n
The code is as given below:
<?php
define('FACEBOOK_APP_ID', 'xxxxx');
define('FACEBOOK_SECRET', '2ab5cxxxxxxxxxx89a');
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 ($_REQUEST) {
echo '<p>signed_request contents:</p>';
$response = parse_signed_request($_REQUEST['signed_request'],
Facenook_Secret);
echo '<pre>';
print_r($response);
echo '</pre>';
} else {
echo '$_REQUEST is empty';
}
?>

Facenook_Secretin the last if block? Face n ook? – Marc B Jun 11 '12 at 18:42sha256on one server was that it did not properly execute all functions in one of my scripts; may be non-supportive? 2) Silly question maybe, butFacenook_Secretis that a deliberate typo? – Fred Jun 11 '12 at 19:12