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 made an widget for website showing the last posts for an person account so the user can add like/comment to that facebook person account , now am trying implemente same technique but for facebook page not person account , when i click like button am getting no error but the like is not added am sending the like in this way :

when user click like button

 echo '<a href="javascript:;" onclick="fb_Like('.$value['id'].','.$access_token.')"><div class="unliked"></div>LIKE</a>';

Then run the function 


               function fb_Like(post_id, token){
                jQuery.ajax({
                type: "GET",
                url: "likepost.php",
                data: 'id='+post_id+'&token='+token,
                success: function(html)
                    {
                        alert(html);

                    }

                });
           }  





$access_token = $_GET['token'];

$post_id = $_GET['id'];

function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
          'method' => 'POST',
          'content' => $data
        ));
if ($optional_headers !== null) {
  $params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
  echo "error";
}
$response = @stream_get_contents($fp);
if ($response === false) {
  throw new Exception("Problem reading data");
}
  return $response;
}

$data = "access_token=".$access_token;

$url = 'https://graph.facebook.com/'.$post_id.'/likes';

$result = do_post_request($url, $data, $optional_headers = null);

do i missed something ??? please help

share|improve this question
Where does your access token come from, and did you acquire the necessary permission from the user first? – CBroe Sep 30 '12 at 14:39

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.