1

我需要知道如何获取有关几页facebook 的信息。例子:

http://graph.facebook.com/http://www.porenvio.com

它只是一页。但我想做类似的事情:

http://graph.facebook.com/http://www.porenvio.com & http://www.google.es & ...
4

1 回答 1

1

您可以使用 FQL 执行此操作:

SELECT like_count, url 
  FROM link_stat 
 WHERE url = 'http://porenvio.com' 
    OR url = 'http://google.com'

结果:

{
  "data": [
    {
      "like_count": 1, 
      "url": "http://porenvio.com"
    }, 
    {
      "like_count": 1183262, 
      "url": "http://google.com"
    }
  ]
}

查看link_statFQL 表以查找更多字段:share_count, total_count, ...

于 2013-07-06T22:14:50.090 回答