Assistance Needed for Posting Images from Notion Database to Facebook

Hello,
I hope you’re doing well. I’m currently working on an automation process where I save a webpage to a Notion database and then post that page’s content (text and images) to Facebook. While I’ve successfully managed to extract and post the text from Notion to Facebook, I’m facing difficulties with the images.

Here’s what I’m trying to achieve:

  1. I save a webpage to a Notion database as a item.
  2. I then use Make.com to pull the content from Notion and post it on Facebook.
  3. The text posts to Facebook correctly, but I don’t know how to extract all the images from the Notion database and include them in the Facebook post.

Could you please advise on how I can retrieve multiple images from a Notion database item and include them in the Facebook post? Any detailed guidance or suggested steps would be greatly appreciated.

Thank you so much for your assistance, and I look forward to your response.

Best regards,

This is the JSON structure for posting multiple images. You can map this into the facebook module after you use a parse json module.

[
{
“photos”: [
{
“url”: “IMAGEURL1”,
“type”: “url”
},
{
“url”: “IMAGEURL2”,
“type”: “url”
},
{
“url”: “IMAGEURL3”,
“type”: “url”
},
]
}
]

Hi LinkYourTech,

Thank you for your detailed response! I really appreciate your time and effort in providing such an in-depth explanation.

However, I have to admit that I’m quite new to this process, and I’m finding it difficult to fully understand and apply the solution you suggested. Is there perhaps a simpler way to achieve the same result or maybe a step-by-step breakdown for someone with less experience?

I would really appreciate any additional guidance or an easier approach if possible.

Thank you again for your help!