我在共享计数器http://www.whaelse.com/en/grau-gruen-schwarz/上仍有问题。
Twitter和Google+对我来说很好。
使用此代码,我试图加载facebook分享。
function get_likes($url) {
$json_string = file_get_contents('https://graph.facebook.com/?id='.$url);
$json = json_decode($json_string, true);
return intval( $json[$url]['shares'] );
}
然后
function getSocialCount($url){
$urlCurrentPage = get_permalink($post->ID);
$strPageTitle = get_the_title($post->ID);
echo '<li><a href="http://www.facebook.com/sharer.php?u=' . $urlCurrentPage . '">facebook<span class="facebooksticky">'.get_likes($url).'</span></a></li>';
}
echo getSocialCount( get_permalink($post->ID));
但我仍然得到0股反击。
答案 0 :(得分:0)
可能是缓存问题,明天再试一次。或者尝试使用sharedcount.com使用的此端点:
https://api.facebook.com/method/links.getStats?urls=%%URL%%&format=json