我需要知道如何獲取有關facebook的若干頁面的信息。 例如:幾頁圖形API
這只是一個頁面。 但我想這樣做:用FQL
http://graph.facebook.com/http://www.porenvio.com & http://www.google.es & ...
我需要知道如何獲取有關facebook的若干頁面的信息。 例如:幾頁圖形API
這只是一個頁面。 但我想這樣做:用FQL
http://graph.facebook.com/http://www.porenvio.com & http://www.google.es & ...
你可以這樣做:
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_stat
FQL表找到更多領域:share_count
,total_count
,...
什麼k信息?你想怎麼處理這些信息? –
{ ID:「http://www.porenvio.com」, 股票:1 } – kahonmlg
你是什麼意思與'股'? –