Hello community!
I want to upload a series of images to Facebook and group them together in a single post. Right now I’m able to upload the pictures without any problems, but the pictures are publish in single posts each one of them.
I followed this guide from the developers documentation, but still no success on grouping all the images in a single posts.
I’m first uploading the pictures with “published → false” on the “/photos” endpoint and after that I get the ID’s and send each one to the endpoint “/feed”.
{
"message": "Some post message",
"published": true,
"attached_media": [
{"media_fbid": "PHOTO_ID"}
]
}
All this is successful but no images grouping at all. Each image is published in a single post.
Please share the workflow
Thank you very much.