ウォールのステータス メッセージへアクセスできます。これはウォールの「What's on your mind? (今なにしてる?)」で投稿された情報です。
GET https://graph.facebook.com/ID/statuses
Statusへアクセスするには、user_statusの権限を取得している必要があります。
{
"data" : [{
"id" : "000000000000001",
"from" : {
"name" : "USER NAME",
"id" : "999999999999999"
},
"message" : "test1",
"updated_time" : "2012-01-02T00:00:00+0000z"
}, {
...
}, {
"id" : "000000000000009",
"from" : {
"name" : "USER NAME",
"id" : "999999999999999"
},
"message" : "test2",
"updated_time" : "2012-01-02T00:01:00+0000z"
}
],
"paging" : {
"previous" : "https:\/\/graph.facebook.com\/999999999999999\/statuses?value=1&redirect=1&limit=25&since=0000000000&__paging_token=000000000000001&__previous=1",
"next" : "https:\/\/graph.facebook.com\/999999999999999\/statuses?value=1&redirect=1&limit=25&until=0000000000&__paging_token=000000000000009"
}
}