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

share|improve this question
After further investigation, it appears that the Facebook SDK is unable to provide a user object after calling $facebook->getUser(); which gets the login url and redirects to it, therefore the loop. – Maayan Glikser Dec 30 '11 at 23:09
Good find. Be sure to close this question so it doesn't continue to appear on open questions. Thanks :) – DMCS Jan 1 '12 at 3:23

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.