I'm using the Facebook Graph API Explorer to retrieve statuses from friends. Querying [username]/statuses returns statuses for myself, and certain friends, but not others. So, for some users, I get...
{
"data": [
{
"id": "10152965008840076",
...
}
]
}
But others return only...
{ "data": [] }
...Even though, on their profile pages in Facebook, I can see their statuses.
Thinking this might be a permissions problem, I enabled the following permissions, to no avail:
- friends_actions.news
- friends_activities
- friends_status
- read_friendlists
- read_insights
- read_mailbox
- read_requests
- read_stream
- user_activities
- user_status
Why do some users return statuses, but not others?