I created my nodejs facebook messenger chatbot and everything is working fine, except quick replies with images only.
according to the Facebook documentation:
You may also send a quick reply with an image and an empty title string to create an icon-only quick reply.
When I send an image with the title attribute I get the quick reply prepended with the image correctly, however when I put an empty string in the title attribute to show an "Only-icon" quick reply, it doesn't work.
JSON that works:
{
"content_type": "text",
"title": 'Any text here',
"payload": '',
"image_url": "Link/To/Img"
}
JSON that doesn't work:
{
"content_type": "text",
"title": '', // (Change is here) Empty title
"payload": '',
"image_url": "Link/To/Img"
}
I have been stuck for hours in this matter, thanks in advance for your help.