私は Wistia.com を初めて使用し、javascript/jquery または php を使用して、私のビデオの Facebook の「いいね!」の数を取得する方法があるかどうか疑問に思っていました。Wistia API を使用しています。
質問する
168 次
1 に答える
2
function count_fb_like($yourUrl) {
$json_string = file_get_contents_curl('http://api.facebook.com/restserver.php?method=links.getStats&format=json&urls='.$yourUrl);
$json = json_decode($json_string, true);
return isset($json[0]['total_count'])?intval($json[0]['total_count']):0;
}
function file_get_contents_curl($url){
$ch=curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
curl_setopt($ch, CURLOPT_FAILONERROR, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT,60);
$cont = curl_exec($ch);
if(curl_error($ch)){
die(curl_error($ch));
}
return $cont;
}
于 2014-08-27T04:16:09.143 に答える