0

我可以阅读用户提要或帖子

https://developers.facebook.com/tools/explorer?method=GET&path=me%2Fposts

但是当我尝试访问群组供稿或帖子时,我做不到。我添加了身份验证部分,但它返回空 JSON。在我尝试过的组中,一个是封闭的,另外两个是开放的。

https://graph.facebook.com/228955270470492 

以上返回:

{
  "id": "228955270470492",
   ...
  "name": "ADI BİLİM",
  "privacy": "OPEN",
  ...
}

请求此提要

https://graph.facebook.com/228955270470492/feed?access_token=AAACEdEose0cBAACgceqTZCBg0YA7MifDP02MKVXpZCipHJNHmHqK5OTzDvJaNke2JDxhOxKOTFl6bPOoZCZAdUZAQFFV6lD8GCMTxQHigUQZDZD

结果为空:

{
  "data": [
  ]
}

我做错了什么?

4

2 回答 2

0

This is working fine for me, is your access token for a user who's a member of the group?

If not, the group needs to have visiblity OPEN. You may also need user_groups permission for the user, but I'm guessing you already have that if you're accessing the user's list of groups

于 2011-10-21T15:41:15.370 回答
0

即使这个组是公开的,我也需要从扩展权限中验证应用程序“read_stream”。现在我可以看到提要:)

于 2011-10-22T09:16:33.713 回答