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.

I can use FQL multiquery in batch request? I have not found examples in google.

I run this query

[{\"method\":\"GET\",
\"relative_url\":\"fql?q=
   {\"posts\":\"SELECT post_id, actor_id, source_id, target_id, message, created_time FROM stream WHERE source_id = ... LIMIT 0, 10\"}\, 
   {\"users\":\"SELECT uid, name FROM users WHERE uid IN (SELECT actor_id FROM #posts) LIMIT 0, 10\"}
 \"}]

But in response I get:

HttpResponse: 400: {"error":{"message":"batch parameter must be a JSON array","type":"GraphBatchException"}}
share|improve this question

1 Answer

up vote 3 down vote accepted

The Batching feature returns this message when you submit a batch of size 1. For instance

curl -k -F 'access_token=...' \
  -F 'batch=[{"method":"GET","relative_url":"me"}]' https://graph.facebook.com

gives the same error, whereas

curl -k -F 'access_token=...' \
  -F 'batch=[{"method":"GET","relative_url":"me"}, \
  {"method":"GET","relative_url":"me"}]' https://graph.facebook.com

works as expected.

The following works for me:

curl -k -F 'access_token=...' \
  -F 'batch=[{"method":"POST","relative_url":"method/fql.multiquery?queries={\"q1\":\"SELECT uid, rsvp_status FROM event_member WHERE eid=199886676776200\",\"q2\":\"SELECT name, url, pic FROM profile WHERE id IN (SELECT uid FROM #q1)\"}"}, \
  {"method":"GET","relative_url":"me"}]' https://graph.facebook.com
share|improve this answer
Thank you for example! – Anton Tsivarev Feb 26 '12 at 10:21

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.