如何通过Graph api在单个批量查询中发布Facebook页面帖子及其评论?

时间:2012-05-03 04:39:09

标签: facebook facebook-graph-api facebook-fql jsonpath

根据这个:http://developers.facebook.com/docs/reference/api/batch,有一种方法可以使用第一个查询的结果来填充第二个查询。

curl \
   -F 'access_token=...' \
   -F 'batch=[{ "method": "GET", \
                "name" : "get-friends", \
                "relative_url": "me/friends?limit=5", \
              }, \
              { "method": "GET", \
                "relative_url": "?ids={result=get-friends:$.data.*.id}" \
              }]' \
      https://graph.facebook.com

但是,我希望在第一个查询中获得一个页面帖子,然后获取各个帖子的评论。不确定这是否可行,感谢任何帮助。

curl \
   -F 'access_token=...' \
   -F 'batch=[{ "method": "GET", \
                "name" : "get-posts", \
                "relative_url": "cocacola/posts?limit=5", \
              }, \
              { "method": "GET", \
                "relative_url": "?????" \
              }]' \
      https://graph.facebook.com

1 个答案:

答案 0 :(得分:0)

幸运的是,如果你使用/comments?ids

,Facebook允许在一个查询中包含多个对象
curl \
   -F 'access_token=...' \
   -F 'batch=[{ "method": "GET", \
                "name" : "get-posts", \
                "relative_url": "cocacola/posts?limit=5", \
              }, \
              { "method": "GET", \
                "relative_url": "/comments?ids={result=get-posts:$.data.*.id}" \
              }]' \
      https://graph.facebook.com

不幸的是,这比并行执行5个单独查询要慢。