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.

hi can anyone tell me how do i do a check like facebook fan page then they can see the albums in the fanpage photo page?

below is the code to check the page like but how can i make it to check like then can view the albums?

Hope anyone can help me on this

$signed_request = $_REQUEST['signed_request'];


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;

  }
share|improve this question
imho, no its not possible, through code. i don't know if there is some setting from facebook in the page's settings, that allows you to do this, however – bool.dev Dec 28 '11 at 7:52
i have tried searching for it. but i couldnt find any permission or privacy settings either – Eugene Dot Dec 28 '11 at 10:30

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.