2012-12-20 168 views

回答

1

是的。

您可以從Graph API端點檢索鏈接統計信息。

例如,訪問https://graph.facebook.com/?id=http://example.com會得到你這樣的迴應:

{ 
    "id": "http://example.com", 
    "shares": 47068 
} 
+0

這是非常有益的,謝謝!它也返回「評論」:3,但我不能說,就我所知。任何想法如何返回喜歡一個特定的網址? –

+1

@ChrisPhelps在Graph API v1.0 AFAIK中無法實現。請注意,上面的「份額」實際上是喜歡,份額和評論的總和。 (查看此FQL查詢的結果:https://graph.facebook.com/fql?q=SELECT%20url%2C%20share_count%2C%20like_count%2C%20comment_count%2C%20total_count%20FROM%20link_stat%20WHERE%20url %3D%27http%3A%2F%2Fexample.com%27) – Domon