2010-05-11 20 views
1

有誰知道如何從Facebook分析中捕獲「類似」按鈕的使用 - 也就是說,如果我有成千上萬的頁面上有Like按鈕,如何查詢Facebook來查看他們每個人收到了多少人?有沒有Facebook API的電話?從Facebook中捕獲分析開放圖像「like」按鈕

謝謝!

回答

3

It's on their open graph documentation page here under "Programmatically administering your pages".

只是做 「https://graph.facebook.com/?id= {URL}」

例如,它們提供了一個GET:

https://graph.facebook.com/?ids=http://www.imdb.com/title/tt0117500/ 

返回一些JSON:

{ 
    "114324145263104": { 
     "id": "114324145263104", 
     "name": "The Rock (1996)", 
     "picture": "http://profile.ak.fbcdn.net/hprofile-ak-sf2p/hs252.snc3/23275_114324145263104_2071_s.jpg", 
     "link": "http://www.imdb.com/title/tt0117500/", 
     "category": "Movie", 
     "fan_count": 328 
    } 
}