Facebook图形API不返回帖子

时间:2017-06-20 18:08:04

标签: facebook facebook-graph-api

我已成功使用FB验证用户,并尝试使用图API来访问其帖子。但是,我只能访问this.sprite字段,并且根本不会返回width != 0字段。

相关守则:

def __grow(self, size):

响应:

if self.__size == len(self.__contents):
  self.__grow()

然而,图API浏览器上的等效代码返回

email

我没有收到任何错误,只是没有posts回复。 FB.api( '/me', 'GET', {"fields":"email,posts"}, function(response) { console.log("Succes: ",response); } ); Success: { email: 'example@email', id: 'example_id' } 等字段也会发生同样的事情。

值得注意的是,当我添加{ posts: {example_posts}, email: 'example@email', id: 'example_id' } 等字段时,API会返回错误。为什么某些字段会无声地失败?

0 个答案:

没有答案