Reputation: 365
Thanks in advance.
Can someone help me understand why the facebook feed is returning an empty array
{
"data": [
]
}
Upvotes: 6
Views: 2544
Reputation: 19995
You need a user access token with read_stream for user posts. Additionally the queried user needs to grant the app the read_stream permission.
You are currently using an application token.
https://developers.facebook.com/docs/graph-api/reference/v2.2/user/feed
Upvotes: 4