我试着用Facebook上的照片/帖子/分享/评论与Jquery或PHP一样,但所有解释都已过时,因为facebook更新了API。
感谢您的帮助!
我试试这个,但不适用于照片...
function fbLikeCount($id,$appid,$appsecret){
//Construct a Facebook URL
$json_url ='https://graph.facebook.com/'.$id.'?access_token='.$appid.'|'.$appsecret.'&fields=likes';
$json = file_get_contents($json_url);
$json_output = json_decode($json);
//Extract the likes count from the JSON object
if($json_output->likes){
return $likes = $json_output->likes;
}else{
return 0;
}
}
echo fbLikeCount('xxxxxx','xxxxxx','xxxxxx');
答案 0 :(得分:0)
$ json_url =' https://graph.facebook.com/'。$ id。'?access_token ='。$ appid。' |'。$ appsecret 。'&安培;字段=喜欢&#39 ;;
更改为:
$ json_url =' https://graph.facebook.com/'。$ id。' / likes'。'?access_token ='。$ appid。&# 39; |' $ appsecret;
。
并使用
$likes = $json_output->data;
foreach($likes as $result) {
echo $result->id . '<br>';
}