Mike Pateras
Mike Pateras

Reputation: 15015

Facebook comment data empty

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

Answers (1)

Michael
Michael

Reputation: 1322

I think what you are looking for is: https://graph.facebook.com/me/feed?access_token=[MyToken]

-michael

Upvotes: 1

Related Questions