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