How to get facebook total likes for a facebook application? -


i know can total fan count facebook page via facebook graph api. cannot seem able total likes (or fan count) of facebook application. take example, graph.facebook.com/castleage, notice fan count missing...any clues on how so? thanks.

try luck this:

$data = array();  try {     $data = $facebook->api(array(         'query' => 'select uid page_fan page_id=' . $fanpageid,         'method' => 'fql.query'     )); } catch(exception $e) {     print_r($e); }  $fancount = count($data);      print_r($fancount); 

Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -