如何让Facebook粉丝或订阅者获得图谱API

时间:2015-05-15 18:07:02

标签: php facebook-graph-api

我使用的是Facebook Graph API 2.0版。为一些用户提供Facebook关注者和订阅者的数量。

我使用util 2015年4月30日通过使用以下网址来获取关注者/订阅者数量。

$options=mysql_query("SELECT col1, col2, col3, col4 FROM table1");
while($allrowsandcolumns=mysql_fetch_array($options)) { 
    $options1=mysql_query("SELECT * FROM table2 where id=$allrowsandcolumns");
} 
while($rows=mysql_fetch_array($options1)) { 
    echo $rows['name'];
}

但是现在我收到了这个错误

https://graph.facebook.com/USER-ID/subscribers?access_token=TOKEN-NR

1 个答案:

答案 0 :(得分:1)

您无法再通过facebook API获得订阅者数量。