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 have done a lot of searching for the answer, but I am unable to find one.

I am trying to upload a single photo to numerous facebook pages, using the graph API.

Using an answer from a similar question I am able to get what I need to do working, like this;

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

This means that for every page I want to post the photo to, I have to upload a duplicate of the photo. What I want to do is something like this;

curl 
 –F  'access_token=…' \
 -F  'batch=[{"method":"POST", \
          "relative_url":"me/photos", \
          "body":"message=Photo" \
          "attached_files":"file" \
         },
         {"method":"POST", \
          "relative_url":"me/photos", \
          "body":"message=Photo" \
          "attached_files":"file" \
         },
        ]’
 -F  'file=@/tmp/photo.gif' \
https://graph.facebook.com

This doesn't appear to work, one photo will be uploaded, the other requests in the batch will return an error message;

{"error":{"message":"(#1) An unknown error occurred","type":"OAuthException","code":1}}

If I have to attach the same photo to the batch request, one per request. I may as well not use the batch request and just do one request for each page I want to upload the photo to.

Anybody know what the problem is?

share|improve this question
Some things to check: 1) Does your access_token have the rights to publish a photo to all these pages? 2) Are you using the relative_url /me/photos for all the batch requests? Only one page will be me in the context of your access_token, so you'll be attempting to post the same photo multiple times to the same page. – cpilko Jan 8 at 15:34
I am using my own page just for testing. I am able to post multiple photos to my own page when I add the same photo under different names in the main request. When I add only 1 photo, one gets posted and the others give the error message. – David Whiteman Jan 8 at 15:36
I don't think Facebook is going to allow you to post the same photo multiple times to a single page in one API call. You can create additional pages with visibility set to "admins only" if you want to test this. – cpilko Jan 8 at 15:40
Take a good look at the Facebook TOS before you release this. Your app sounds like a spam app in Facebook's eyes. – cpilko Jan 8 at 15:42
I think I didn't make the question clear. I want to post the picture to multiple pages, or groups. In the example I am using "/me/photos" so I don't spam groups while testing. I guess I will have to upload the same photo numerous times, one per group/page I'm posting to. I just hoped there was a way to avoid this. – David Whiteman Jan 8 at 15:44
show 2 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.