使用Graph API同时从多个Facebook页面检索公开帖子

时间:2012-03-23 19:27:00

标签: facebook facebook-graph-api

我知道这会让用户从cocacola页面中检索最新的10个帖子。

https://graph.facebook.com/cocacola/posts/access_token= [####]&安培;限制= 10

有什么方法可以同时从 cocacola和pepsi Facebook页面中检索最新的10个帖子。 例如:

https://graph.facebook.com/cocacola&pepsi/posts/access_token= [####]&安培;限制= 10

有人可以帮忙吗?

谢谢, 萨米

1 个答案:

答案 0 :(得分:6)

对于你引用的例子,它是 https://graph.facebook.com/posts?ids=cocacola,pepsi&access_token=[####]&limit=10

在一般情况下https://graph.facebook.com/?ids=<list of IDs>&fields=<list of fields&gt;会工作的。

“{choice”

标题下的main Graph API documentation简要介绍了这一点