TelegramSendTextAsync
A wrapper for the Telegram sendMessage function to send a plain text message (non-blocking execution)
This function invokes an asynchronous request to the Telegram API. To avoid any blocking of the calling function, the execution immediatly returns after the request was executed. It won't wait for the callback. This means you can not ensure that the message was successfully sent. If you need to ensure message delivery, use TelegramSendText instead.
Parameter
string apiKey
The Telegram bot API key
string chatId
The Telegram chat ID that will receive the message
string chatText
The text that will be send
Returns
A string indicating if the request was successfully invoked. 0 means there was no failure.
Code Example
Print(TelegramSendTextAsync(apikey, chatid, "test")); // Will print "0" on success