我正在使用Facebook圖形API,並且我想知道是否有一次在一次調用中獲取所有用戶及其當前狀態的列表?Facebook圖形API獲取所有用戶及其狀態
我基本上想要得到與https://graph.facebook.com/me/friends相同的結果,但每個對象都包含當前狀態。
感謝您的幫助!
編輯:
這是一些澄清。如果https://graph.facebook.com/me/friends?access_token=...
讓我這樣的:(AKA我所有的朋友列表)
{
"data": [
{
"name": "Foo",
"id": "1"
},
{
"name": "Bar",
"id": "2"
},
{
"name": "Foo Bar",
"id": "3"
},
{
"name": "Bar Foo",
"id": "4"
}
]
}
什麼網址或FQL會讓我這樣的:(AKA的我所有的朋友列表和它們的狀態)
{
"data": [
{
"name": "Foo",
"id": "1"
"status": "This is my current status!"
},
{
"name": "Bar",
"id": "2"
"status": "This is my current status!"
},
{
"name": "Foo Bar",
"id": "3"
"status": "This is my current status!"
},
{
"name": "Bar Foo",
"id": "4"
"status": "This is my current status!"
}
]
}
我只想打一個電話,因爲與我不同,大多數人都有100多個朋友,我不想爲了獲得狀態而撥打100多個電話。
2500+的意見,並沒有+ 1的?愛在哪裏!? :) – 2012-01-05 03:13:47