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?
access_tokenhave the rights to publish a photo to all these pages? 2) Are you using the relative_url/me/photosfor all the batch requests? Only one page will bemein 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