Hello, how can I send an http request in which I can send information through the url through the Telegram bot?
If you give an example in LoliCode you will help me
I’m on OpenBullet 2 - 0.2.5 but I can’t submit this request.
Thank you
Just use an Http Request block and do a POST request to the webhook like https://api.telegram.org/bot{Token}/sendMessage
(where {Token}
is your bot token) and as payload put application/json
as content type and format it like this
{ { "chat_id": "your_chat_id", "text": "your_text" } }
1 Like