I had made an fb quiz application in php and added it using iframe. This is just like a normal quiz application. But user needs to like this app before continuing.
Its working fine on Firefox, chrome but it’s not working in ie9 & Safari. In ie after answering first question from the choice and submitting, it loops in the same question itself and is not going to the second question. I had checked this application after deleting my like checking code. That is working. So problem will be on my like checking code.
For checking like i had put this code:-
$signed = parse_signed_request($_REQUEST['signed_request'], 'MY SECRET ID');
if($signed['page']['liked']==1)
{
$fan=true;
}
else
{
$fan=false;
}
if (!$fan) {
?>
<div class="container">
<div style="font-size: 24px; padding: 20px; text-shadow:0px 0px 3px #ff0000;">Like this page to start QUIZ :)</div>
</div>
<?php
} else {
?>
[MY QUIZ APPLICATION CODE]
<?php
}
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, '-_', '+/'));
}
?>
What will be the possible issue?
I had published this application in this URL: Have look into my application.
http://www.facebook.com/pages/Disco-Community/205042976289877?sk=app_263286233784426
Remember this is a IE & Safari issue. It is working perfectly on all other browsers.
signed_requestcookie? – Mathieu Imbert Aug 17 '12 at 14:00