Hi Guys!
I'd like to send a link with a name + URL via Node-RED to Telegram Messenger.
Somehow I cannot figure out how to do this ?
Right now i use following function, which only sends the full link (without name).
var dashboard = 'https://........../ui/\n';
msg.payload = {chatId : xxxxxx, type : 'message', content : dashboard};
return [ msg ];
How can I set this up with a name for the link? I don't want to see the full link in Telegram, but only the name which leads to the URL when I click it.
(Hopfully this is explained somehow reasonable)
Thank you!