Search found 1 match

by Frank
Sat Jan 15, 2022 6:21 pm
Forum: ESP8266 boards
Topic: urequests - Error sending to Telegram bot
Replies: 4
Views: 11449

urequests - Error sending to Telegram bot

I've only recently gotten into ESPs and Micropython. I want to send a message from ESP8266 (D1 Mini V3 NodeMCU ESP8266EX) to Telegram bot. import urequests . . . urequests.post("https://api.telegram.org/bot" + botToken + "/sendMessage?chat_id=" + str(chatId) + "&text=" + text) Sending the message wi...