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.

Possible Duplicate:
Seamless way to check if user likes page

I think so many people have been asked this quesion,But still I need a solution to check whether logined user has liked the page or not.I have tried so many solutions but none of theme were working.

I have tried with the following code

function parsePageSignedRequest() {
   if (isset($_REQUEST['signed_request'])) {
   $encoded_sig = null;
   $payload = null;
   list($encoded_sig, $payload) = explode('.', $_REQUEST['signed_request'], 2);
   $sig = base64_decode(strtr($encoded_sig, '-_', '+/'));
   $data = json_decode(base64_decode(strtr($payload, '-_', '+/'), true));
   return $data;
 }
return false;
}
if($signed_request = parsePageSignedRequest()) {
  if($signed_request->page->liked) {
    echo "This content is for Fans only!";
    } else {
    echo "Please click on the Like button to view this tab!";
  }
}

I could not get the user "liked" response. So any can instruct me how what should I do to get the user "liked" response.

share|improve this question

marked as duplicate by ifaour, Jeff Atwood Sep 13 '11 at 8:55

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 3 down vote accepted
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['signed_request'] = 'Unknown algorithm. Expected HMAC-SHA256';
    return null;
  }

  // check sig
  $expected_sig = hash_hmac('sha256', $payload, $secret, $raw = true);
  if($sig !== $expected_sig) {
    $error['bad_signed_json'] = 'Bad Signed JSON signature!';
    return null;
  }

  return $data;
}

function base64_url_decode($input) {
  return base64_decode(strtr($input, '-_', '+/'));
} 

$signed_request_data = parse_signed_request($_REQUEST['signed_request'],$fb_app_secret);

if($signed_request_data['page']['liked']) {
  print "Content for Useres who have liked your page...";
}
share|improve this answer

I think you'll have to use FQL, and specifically query the page_fan table.
Do read the FB documentation that i have mentioned in the above links. Further to build such FQL queries you can visit this linked answer.
Thats all i can tell now, hopefully it helps!
Edit:
@MuckyBuzzwoo's answer will also work for page tabs, the signed_request has a liked field $data['page']['liked'] that shows if the currently visiting user to the tab has liked the page or not.

share|improve this answer
@MuckyBuzzwoo's answer will also work, the signed_request has a liked field $data['page']['liked'] that shows if the currently visiting user to the tab has liked the page or not. – bool.dev Oct 4 '11 at 13:50

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