2011年4月29日 星期五

php得到facebook粉絲頁的讚數


$config['appId'] = 'ap_id';
$config['secret'] = 'ap_secrect';
$config['cookie'] = true;
$this->load->library('facebook', $config);
$this->load->library('session');  
$result1 = $this->facebook->api(
    array(
        "method" => "fql.query",
        "query" => "select fan_count from page where page_id =粉絲頁id;"
    ));
echo $result1[0]['fan_count'];<-讚數
原文

沒有留言: