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?
I think what you are looking for is: https://graph.facebook.com/me/feed?access_token=[MyToken]
-michael
精彩评论