Empty results public user's feed using Facebook Graph API

I get my access_tokens by using:

https://graph.facebook.com/oauth/access_token?client_id=[my_client_id]&client_secret=[my_client_secret]&grant_type=client_credentials

Using the access_token I get, I ask for public feeds using:

https://graph.facebook.com/[obj_ID]/feed/?access_token=[token from above]

For some reason the return value is empty []. The user's privacy settings are public for everything posted.

In other cases (for different users) I get an incomplete feed, ie not all posts in the feed are returned.

Step by Step to reproduce the problem:

  • Objective: to get the feed of https://www.facebook.com/profile.php?id=100000625617939
  • Create an application and using your app id & app secret get the access token as described on App Login section (Call https://graph.facebook.com/oauth/access_token?client_id=[my_client_id]&client_secret=[my_client_secret]&grant_type=client_credentials)
  • Call https://graph.facebook.com/100000625617939/feed/?access_token=[access token from above]
  • Result: Empty Json
  • Is this a Facebook bug? Or am I doing something wrong?

    链接地址: http://www.djcxy.com/p/32632.html

    上一篇: 公开帖子没有出现在Graph中?

    下一篇: 使用Facebook Graph API空结果公共用户的提要