Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

According to this: http://developers.facebook.com/docs/reference/api/batch, there's a way to use results of first query to populate second query.

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

However I want to get a page posts in first query and then get the individual posts' comments. Not sure if this is possible, any help is appreciated.

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
share|improve this question

1 Answer

up vote 0 down vote accepted

Luckily Facebook allows for multiple objects in a single query if you use /comments?ids

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

Unfortunately this is slower than doing 5 individual queries in parallel.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.