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

share|improve this question
How do you create your signed_request cookie? – Mathieu Imbert Aug 17 '12 at 14:00
Honestly i am not an expert in php. I had downloaded a php quiz code and integrated like checking by this method.This code i had put it in index file. I didn't put any fb related codes in any other files. I just put this much code only in index. Will you please tell me how to create signed_request cookie? – spider Aug 18 '12 at 6:18
Actually this is working perfectly in my landing page. Both in IE9 and safari. But seems to be not working when it comes to facebook. This is my landing page: blueripples.org/facebookapps/demoapp/phpdemo – spider Aug 20 '12 at 8:53
Seems to be it is working in facebook also when landing page is reloaded. Why is it so? – spider Aug 20 '12 at 9:05

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.