Unable to send text_link from telegram bot

Try using markdown...

msg.payload = {
  content: msg.payload, //the image buffer
  caption: `There's someone at the door. [Live Image](http://camera_url).`,
  type : 'photo',
  chatId: "xxxx"
}
msg.payload.options = { parse_mode : "Markdown" };

return msg;
1 Like