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’ve just created a facebook app and has added it to my facebook page, all smooth till now, but one thing that I need know is restrict that app to only people who are fans of my page.

But I don’t know how to do it, in other words the scenario I am looking to implement is like this:

if(user is a fan){
    //Show app contents
}
else{
    //Request user to like the page.
}

The code snippet that I am currently using is this, but its not working correctly i.e. returning ‘not liked’ even though ive liked the page:

    $app_id = "160336534418730";
    $app_secret = "b14ac6d2b75656db259599b06983e881";
    $canvas_page = "http://apps.facebook.com/myapp";
    $auth_url = "https://www.facebook.com/dialog/oauth?client_id=" . $app_id . "&redirect_uri=" . $canvas_page . "&scope=email,read_stream,publish_stream,user_photos";

    //Requesting Signed Parameter:
    $signed_request = $_REQUEST["signed_request"];
    list($encoded_sig, $payload) = explode('.', $signed_request, 2);
    $data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);

    if ($signed_request -> page -> liked) {
        // They Like us!
        echo "LIKED";
    } else {
        echo "NOT LIKED";
    }

Kindly help me with this. Thank you

share|improve this question
What does the rest of the Signed_request look like? Does it have the correct values for the other properties? – CoderFromOuterSpace Mar 11 '12 at 21:28
yeah other uses like $data["user_id"]; are returning correct values. – Maven Mar 11 '12 at 21:33

1 Answer

up vote 2 down vote accepted

Changing your code as below will solve this

if ($data['page']['liked']) {
    // They Like us!
    echo "LIKED";
} else {
    echo "NOT LIKED";
}
share|improve this answer
by doing this i am getting this error:Fatal error: Cannot use string offset as an array... – Maven Mar 12 '12 at 6:07
Sorry, please try $data['page']['liked'] – Thilina Hasantha Mar 12 '12 at 6:30
solved thank-you! :) – Maven Mar 12 '12 at 7:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.