Reputation: 15015
I've got a Facebook Graph API access token in which I've requested read_stream and user_status access. When I try to get comment data for myself:
https://graph.facebook.com/me/comments?access_token=[MyToken]
I get a blank piece of Json back:
{
"data": [
]
}
I do have recent comments on my stream. Shouldn't they show up?
Upvotes: 0
Views: 586
Reputation: 1322
I think what you are looking for is: https://graph.facebook.com/me/feed?access_token=[MyToken]
-michael
Upvotes: 1