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.

Script files that are executed by the Windows command-line interpreter.

learn more… | top users | synonyms (8)

0
votes
1answer
37 views

FB batch request : get Profil Images of managed Pages

Hi there i tried to get all the Profile-Images of the Pages i managed. I tried something like this: // my loop: $request[] = array( 'method' => 'POST', ...
0
votes
0answers
62 views

Posting to walls of FB webpage likers with Curl (open graph page)

I am trying to use these command lines below for posting to all 30,000+ likers of my website, however there is a error message shown, why? curl -k -F grant_type=client_credentials -F client_id=7xxxx ...
0
votes
1answer
51 views

using facebook batch request javascript api

Im trying to send batch request to graph api, and getting error in the response for the second request: "{ "error": { "message": "(#100) Missing message or attachment", "type": ...
0
votes
0answers
57 views

Making batch calls of 50 requests which ask for X multiple objects ids (Facebook Graph API)

I'm trying to make batch calls of requests which ask for multiple objects. What I want to do are several calls as: ...
0
votes
0answers
56 views

Facebook ios batch requests

I am trying to build a photo gallery from Facebook using Facebook tools (Facebook SDK for iOS, Graph API, samples, how to's.. etc). My first work is understanding the flow of the requests. This ...
0
votes
0answers
95 views

facebook JS SDK batch request for custom actions

I have written the following method to check if a user has submitted any of the 3 custom open graph actions on a webpage: function checkOpenGraphHistory() { var actionList = new ...
1
vote
0answers
101 views

Facebook batch upload using javascript

I have to upload multiple photos in facebook using batch process Right now am uploading using this loop. It is working properly . But how to implement this with batch for (var u=0; u < len; u++) ...
2
votes
1answer
104 views

Multi-photo upload to album and wall story

I'm confident about posting multiple photos to a fan page album through a common batch request with PHP, and I also know how to use che "no_story" command to hide the wall posts showing each image ...
0
votes
1answer
149 views

Facebook api batch for revalidate multiple access token

I want to make a Facebook batch call to read registered users walls. As far as I know, I need to especify the user access token in the body of each call in batch. But with offline_access ...
0
votes
2answers
426 views

Invite more than 50 friends to an event with batch API PHP

I'm trying to use the batch API to make my users able to invite all their page fans to an event. It's the first I'm trying to use the batch API and I got some troubles with it. Here is my code without ...
2
votes
1answer
265 views

Batch Requests and attached files with PHP SDK

I'm trying to make a batch request to post an unique photo on differents page. For that, I wish to use Batch Post Requests to optimize the proccess. My Code : $facebook = new ...
0
votes
0answers
87 views

music.listen API returns old data

I've been using music.listens API for while now. I've noticed that my app stopped working correctly. I investigated a little bit further then found out that the music.listens is not returning the ...
0
votes
0answers
210 views

what's wrong with the ads api of batch requests?

when I use the batch requests api,it always throw 2 exceptions.Below: 1, Error:Could not save creative; 2,Error:(#100) Must include the ["creative"]["title"] index. But,this is not true. One of my ...
0
votes
0answers
298 views

Tagging a photo in facebook with batch graph api

I have some working source code which tags people friends in a photo, however it loops through doing an api request per tag. I know this can be done using a batch request, which is an json encoded ...
-1
votes
2answers
802 views

How to do Batch request using the facebook php SDK

In my project i have a lot of event id's in one table. I want to loop over these id's and make a request to facebook for the additional information of that specific id. Now i make a different http ...
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 ...
0
votes
1answer
405 views

why doesn't https://graph.facebook.com/me/friends/myApp:myAction work?

I created an action that also publishes an object. I enabled publish_actions permissions. I can get my list of actions via: https://graph.facebook.com/me/myApp:myAction but i can't get: ...
1
vote
1answer
586 views

Facebook batch calls with JSONP

As of 10.04.2012, There is a short paragraph in the Facebook developer document for 'batch request' entitled: Batch calls with JSONP, which reads: "The Batch API supports JSONP, just like the rest ...
0
votes
2answers
309 views

Is it possible to do batch POST API calls?

I'm writing an app that makes a daily post as a user, and having benchmarked the PHP code that does this, it seems to take about two seconds per user. I'm dividing the work up in to chunks, and using ...
6
votes
2answers
898 views

Check if multiple user ids are friends with a particular person

I want to know which people in a list of people are friends with this user. Is there a graph api call that can return the subset of ids that is the user's friends? I've tried: ...
1
vote
1answer
270 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 ...
0
votes
3answers
282 views

I have 16,000 URLs, I need to get the facebook graph ID of each one

I have 16,000 URLs. each is a Facebook open graph object. I need to get the open graph data for each of the 16k URLs. The way I'm thinking about doing this is first finding the open graph object ID ...
0
votes
4answers
453 views

How to delete an album?

I try in my application to delete an album, but there are no working methods. I tried by using the url whith parameters : the access token et the method , with batch request (but i don't know the ...
1
vote
1answer
124 views

batch update link_urls in the creative

We are trying to attach some parameters to existing link_urls for creatives. For example: http://www.adchemy.com -> http://www.adchemy.com?param_ad_id=23423424242 for tracking purposes, where ...
4
votes
1answer
2k views

Facebook batch request

i am trying to rewrite few requests into one batch request $posts = $facebook->api('/me/feed?limit=9999999'); for($i = 0; $i < count($posts['data']); $i++) { $comments = ...
2
votes
0answers
235 views

Batch creative image update with ADS Api?

I try to update ads group with batch request. Everything is going fine if not add image_file param but when add it return an error. My ad_specs; Array ( [method] => post [relative_url] => ...
5
votes
3answers
879 views

How I can do facebook batch fql in java

in facebook fql theres this code https://developers.facebook.com/docs/reference/api/batch/ curl \ -F 'access_token=…' \ -F 'batch=[ \ {"method": "GET", "relative_url": "me"}, \ ...
1
vote
1answer
254 views

Facebook Graph API Batch Requests - Retrieve Friends Likes returns unknown error

I'm accessing the Graph API using batch requests, while trying to retrieve all of my friends likes the plataform returns-me a unknow error. By the way i'm using JSONPath to retrieve the likes. ...
0
votes
1answer
159 views

Batch posting to feed

I am conducting test for a future project. I tried to rapidly post 100 - 200 test messages to a test user's feed from a server creating ~20 threads in parallel to send them as fast as possible. I got ...
0
votes
1answer
1k views

Facebook Batch Request: error (#100) Invalid parameter: Body of an error

I need to make something simple as: $queries = array(array('method' => 'POST', 'relative_url' => '1665895414/apprequests', 'body'=>'message=hello')); $jsonstr = json_encode($queries); ...
6
votes
3answers
1k views

Whats the batch request limit for Facebooks Graph API?

Does anyone know whats the limit for batch requests when using FBs graph API? From their documentation: Limit We currently limit the number of batch requests to 20. Source That's not ...
1
vote
1answer
2k views

Facebook C# SDK : BatchAsync Get all friends last statuses by one batch request

How can I get all friends' last statuses in one batched request? I tried the following but it is not working: FacebookClient _FacebookClient = new FacebookClient ( Settings.AccessToken ); ...
1
vote
2answers
149 views

is there any way to determine the order of response in the batch response?

I have a question regarding to batch response. If I query home of 20 different users(A, B,C, D,etc..) in one batch request, is there any guarantee that the response of batch will be the. same order ...
4
votes
5answers
7k views

Batch calls with Facebook Graph API & PHP

Designing my first app against the Graph API, using version 2.1.2 of the Facebook supplied PHP library. Trying to maximize performance, etc out of the box and want to batch a few calls together into ...