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.
JSONPath is a means of using XPath-like syntax to query JSON structures.
0
votes
0answers
31 views
facebook batch request with jsonpath
With Facebook, i need to know, who (which user) has commented on a post on a facebook-page.
I make two requests with facebook-batch-requests in my javascript-file, the first for all the posts and with ...
0
votes
1answer
321 views
How to get a Facebook page posts, and its comments in a single batch query via Graph api?
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=[{ ...
0
votes
0answers
98 views
String Ids are not quoted in dependent batch-request to api. Workaround?
I'm currently trying to query the facebook api to retrieve some data via batch-requests with two fql queries.
One of the queries fetches a set of album ids in the form of:
Select aid FROM album ...
0
votes
2answers
462 views
Quoting/escaping jsonpath elements for in clause of dependent fql queries
Using the facebook php sdk, I am trying to get a list of comments for every post made to a person's wall by someone else. I'm using FQL in a Batch API request as follows:
$getStream = ...