Currently I have this piece of code:
public function get_likes($url) {
$json_string = file_get_contents('http://graph.facebook.com/?ids=' . $url);
$json = json_decode($json_string, true);
$total_count = 0;
if (isset($json[$url]['shares'])) $total_count += intval($json[$url]['shares']);
if (isset($json[$url]['likes'])) $total_count += intval($json[$url]['likes']);
return $total_count;
}
Which returns a count of likes or shares for the given url. Now it works on one url but not the other. Here is an example: http://olympusmons.com/versus
All I do is when loading the list I call that function passing the row id for the song as you can see it works on the first row but not the others. And when I try to visit the graph page:
https://graph.facebook.com/?ids=http://www.olympusmons.com/versus.php?id=4 <-- works https://graph.facebook.com/?ids=http://www.olympusmons.com/versus.php?id=5 <-- doesn't
Any help?