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.

Now my i trying to use batch method for sending multiple methods, so i used following code for trying to send two images on Facebook using FBGraph,

NSString *req01 = @"{ \"method\": \"POST\", \"relative_url\": \"me/photos\", \"body\": \"message=MyMessageOnPhotoone\", \"attached_files\": \"myimagedata\"}";
NSString *req02 = @"{ \"method\": \"POST\", \"relative_url\": \"me/photos\", \"body\": \"message=MyMessageOnPhototwo\", \"attached_files\": \"myimagedata\"}";
NSString *allRequests = [NSString stringWithFormat:@"[ %@, %@ ]", req01, req02];
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObject:allRequests forKey:@"batch"];
[facebook requestWithGraphPath:@"me" andParams:params andHttpMethod:@"POST" andDelegate:self];

And batch method is,

curl 
–F  'access_token=…' \
-F  'batch=[{"method":"POST", \
          "relative_url":"me/photos", \
          "body":"message=My cat photo" \
          "attached_files":"file1" \
         },
         {"method":"POST", \
          "relative_url":"me/photos", \
          "body":"message=My dog photo" \
          "attached_files":"file2" \
         },
        ]’
     -F  'file1=@cat.gif' \
     -F 'file2=@dog.jpg' \
     https://graph.facebook.com

I got following error,

  (
    {
    my binary image encoded data
    code = 400;
    headers =         (
                    {
            name = "WWW-Authenticate";

           my binary image encoded data
        },
                    {
            name = "HTTP/1.1";
            value = "400 Bad Request";
        },
                    {
            name = "Cache-Control";
            value = "no-store";
        },
                    {
            name = "Content-Type";
            value = "text/javascript; charset=UTF-8";
        }
    );
},
    {

     myimage binary encoded data
    code = 400;
    headers =         (
                    {
            name = "WWW-Authenticate";
            myimageBinary encoded data
        },
                    {
            name = "HTTP/1.1";
            value = "400 Bad Request";
        },
                    {
            name = "Cache-Control";
            value = "no-store";
        },
                    {
            name = "Content-Type";
            value = "text/javascript; charset=UTF-8";
        }
    );
   }
  )

I can't able to rectify the problem is in URL request in my code.

share|improve this question
Possible duplicate of stackoverflow.com/questions/5498302/… – Tommy Crush Dec 12 '12 at 4:03
how about simple loop through you images array? send one at the time? – Muhaye Dec 12 '12 at 4:33
@Muhaye, i want to send array of images – iAmbitious Dec 12 '12 at 4:38
@iHungry Sorry I don't think u can do it just by sending an array developers.facebook.com/docs/reference/api/page/#photos – Muhaye Dec 12 '12 at 5:16
@Muhaye, i want to send multiple images. Suppose i m not using array of images then? – iAmbitious Dec 12 '12 at 6:24
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.