Search code examples
facebook-messenger

Facebook Messenger Bot, Send multiple Image Attachment


I'm creating a Facebook bot, where the bot sends out 5 image attachment.

Below is the Json template to send out 1 image

"message":{
"attachment":{
  "type":"image",
  "payload":{
    "url":"https://petersapparel.com/img/shirt.png"
  }
}

}

I Need Json formate to send multiple image attachment on Facebook messenger api.


Solution

  • You could either send out several messages to your user in a for loop or you could use a list template to send the photos (and captions) together, but it would render differently.