これによると:http://developers.facebook.com/docs/reference/api/batch、最初のクエリの結果を使用して2番目のクエリにデータを入力する方法があります。
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