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.
When working on an application that deals with Facebook API, if the application needs the ability to access significant amounts of data in a single go - or you needs to make changes to several objects at once, it is often more efficient batch your queries rather than make multiple individual HTTP ...
0
votes
0answers
33 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
107 views
Using Batch request in PHP SDK to get Facebook Album Covers
I am using the PHP SDK through Batch Request (so that its faster to get the covers of all the albums). Its working fine, but the pictures I am getting are not the album covers but the individual ...
0
votes
1answer
236 views
Posting on multiple friend's wall using Facebook 3.0 after the Feb 6th change
I have found here that we can use Batch rqeuest to post on multiple friend's wall and I have tried to do so using graph API.But I got the following error.But I can post with feed dialog to single ...
0
votes
1answer
106 views
How to get Request IDs from Facebook Batch Request using PHP
To avoid overloading the API requests I am using Facebook Batch API to send app-to-user requests:
$access_token = MYAPPSACCESSTOKEN;
foreach($myusers as $user) {
$body = array(
...
0
votes
0answers
60 views
Retrieve the most recent data with Facebook graph API
I am doing the following batch request to retrieve insights data:
$queries = array(
array('method'=>'GET', 'relative_url'=>'/divineit/insights/page_fans'),
array('method'=>'GET', ...
1
vote
0answers
62 views
Graph API /threads messages usage limitations
With regards of using the /threads object from Graph API I want to know if a public figure account has some limitation regarding the amount of received messages / day and to know if a Facebook ...
0
votes
1answer
211 views
Error with photo upload batch request + multi users
I have application with publish_stream that I can post status updates on my users walls, now I want to post photos, after searching I read about batchrequest and made my code like that
<?php
...
0
votes
0answers
278 views
Batch request for uploading multiple photos on facebook album
I tried to upload multiple photos to facebook album using Batch request as follows,
JSONObject img1 = new JSONObject();
JSONObject img2 = new JSONObject();
JSONArray batchArray = new ...
0
votes
1answer
303 views
facebook batch/fql friendlists a friend is member of
I'm creating a javascript facebook app to have an overview of my friendlists. Actually I can retrieve my (logged in user = me) friendlists, when I click a friendlist I see all my friends in that list.
...
1
vote
1answer
131 views
Batch API, inviting friends
I'm trying to invite all fans of a page to a facebook event using the batch API. It's the first time I'm using this API, and at this time I have nothing to test this part of code... can someone tell ...
0
votes
0answers
197 views
Facebook Graph API Batch Requests returning wrong results
Whenever I run the following batch request with the POST_ID of a post without any comments, the result of the last query comes empty. If I repeat the batch request afterwards I receive the comments ...
0
votes
0answers
90 views
Facebook GraphAPI batch query, “Cannot specify an empty identifier”
Using GraphAPI batch request to fetch of list of IDs for comments on a post, then get the Likes attached to each. This works fine unless there happens to be no comments, then the second query in the ...
0
votes
4answers
479 views
Facebook Graph API - Batch Request for large profile pictures
Trying to grab all of the users Facebook friends information which I can successfully do via a batch request:
NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": ...
0
votes
2answers
179 views
Facebook SDK 3.0 for iOS: Can't set omit_response_on_success for batch requests
It seems for batch requests, all the parameters are escaped as parts of relative_url, if omit_response_on_success is set to @(false), app will crash with this message: -[__NSCFNumber length]: ...
0
votes
0answers
146 views
How to use Facebook Batch Upload in PHP SDK sorting photo
I use the batch required to upload 200 photos,
but the sequence is wrong,
I don't know how to do let sorting according to my upload sequence.
then I try to add a parameter in the $req
'depends_on' ...
1
vote
1answer
318 views
Using the facebook batch api to post the same photo to multiple facebook pages
So here is what I'm trying to do. I'm trying to use the facebook batch api to post a single photo to multiple facebook pages at the same time. I first put everything into an array (fb_batch) then ...
0
votes
0answers
143 views
Facebook SDK 3.0 Beta for iOS supports batch requests
I've been using the FB PHP SDK + Graph API for quite a while now and I came across this news release
I've never played with the iOS SDK before. Here is the line that confuses me:
We have enabled ...
0
votes
0answers
87 views
Facebook insights post batching
I'm trying to get the lifetime metrics for a post, on a per day basis, via Graph API. To this end, I've batched a number of requests, for each day since the post's creation date to today, like so
...
0
votes
1answer
194 views
facebook batch request to get all the photos
I want to get all the photos of the user who gave permission to the app. Currently, I tried single and batch request of Graph API but it always paginates the results. Is there a seamless way to get ...
0
votes
0answers
122 views
Batch Request for multiple apps
I manage multiple Facebook apps for my company and I'm currently working on a project to get a consolidated friends view across all the apps.
I'm using the Facebook SDK and I'm making use of the ...
2
votes
1answer
337 views
Facebook Graphi API with FQL Batch Requests
I am trying to use batch request against graph API in java. Actually it's an HTTPClient that is making a graph API request.
I tried to construct an array of batch request like this:
String query2 = ...
0
votes
1answer
201 views
Is batching queries to FQL with per-request access_tokens not allowed? It isn't working
Is it not possible to batch query the graph using 'method/fql.query?query=...' using multiple access tokens?
I have never had trouble in the past batch querying non-fql endpoints with multiple access ...
1
vote
1answer
271 views
Uploading multiple photos returns OAuthException for some of them
I'm uploading multiple photos to the user's application album using a Graph API Batch Request.
For some mysterious reason, I get a 400 Error code for some photos, but not for others, in the same ...
1
vote
3answers
2k views
How to do batch request of fql queries in graph api?
I am having 4-5 fql queries in single function. Each of them taking 2-4 seconds to execute. Total 14-15 seconds are required to execute that whole function. User required to wait for long time. So I ...
1
vote
1answer
455 views
facebook batch request for multiple users
I have a user database from facebook. I want to get their data (interests and friends birthdays) using batch request. Now I can make 1 batch request for 1 user. But considering the no. of users in my ...
0
votes
1answer
309 views
Graph API Batch Request with dependencies and increment?
I want to do a batch request and use dependencies, but i need to increment the ids I receive. As you can see below, I have tried a few different ideas but they don't work. Anyone ever get this to ...
1
vote
1answer
514 views
Why does Facebook batch API request sometime return nulls?
I use Facebook's batch request quite a bit in my app. For the most part, it works really well, but one thing that confuses me is why does their API sometimes return nulls? If I get this "nulls" ...
0
votes
1answer
380 views
batch request graph api iPhone xcode?
I am going to fetch four or multiple records of from facebook through graph api with batch request like this
NSString *jsonRequest1 = @"{ \"method\": \"GET\", \"relative_url\": \"133028623426021\" ...
1
vote
1answer
465 views
A way to query both news feed and wall using a single request
I'm trying to find the best way to query both news feed and wall using a single request.
First attempt:
Query me/home and me/feed in batch request.
Problem: querying me/home gives me bad results ...
0
votes
1answer
2k views
file_get_contents not working for fetching data from facebook using batch requests
file_get_contents not working for fetching fata from facebook using batch requests.Am using the code below:
$url='https://graph.facebook.com/?batch=[{ "method": "POST", ...
1
vote
1answer
454 views
How to use fql and graph api together in facebook batch request?
How to use fql and graph api together in facebook batch request?I want to get profile information about me using graph api and my friend's last 30 days posts using fql .
0
votes
2answers
346 views
Batch request query
I am working with the batch request of the Facebook. I have tried the api call as shown below. Is there anything wrong here?
[{"method":"POST","relative_url": ...
2
votes
2answers
403 views
Waiting for result of graph api / batch api
how can i set no waiting for response from api call?
I have big batch request (one depends on other) but application do not needs results. Just say "facebook do this" and do not wait for response.
...
0
votes
2answers
465 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 = ...
2
votes
2answers
752 views
How do I encode the & symbol for batch requests?
I have a Facebook batch request that looks like this:
https://graph.facebook.com/?access_token=ACCESS_TOKEN&batch=[{"method": "GET", "relative_url": "search?q=EMAIL@ADDRESS.COM&type=user"}]
...
4
votes
1answer
788 views
Linking responses to requests with Facebook Batch Requests
I'm using Facebook's Batch Requests to post to multiple feeds and I need to link the correct response to every request in the batch. Since I found no definitive info on the documentation, do the ...
2
votes
2answers
1k views
Limit fields using JavaScript SDK Batch Request
Is it possible to limit the fields that are returned from Facebook's Batch request API using the JavaScript SDK? For example:
FB.api('/', 'POST', {
batch: [
{ method: 'GET', ...

