Caption in attachment
Closed this issue · 2 comments
KstmSoft commented
Hello, i would like to set an caption in the attachment object for images.
Something like this:
bot.respond({ attachment: {
data: `data:image/jpeg;base64,${albumImage}`,
mimetype: 'image/jpeg',
//caption:`Album Image` <--------------
}});
gfaraj commented
Hi there,
You can have the desired effect if you add a text property to the message:
bot.respond({ text: 'Album Image', attachment: { data: ``data:image/jpeg;base64,${albumImage}``, mimetype: 'image/jpeg' }});
Let me know if that works for you.
KstmSoft commented
Perfect, works like a charm!
Thanks so much.