Is it possible to send form data to telegram using Javascript?
I read many answers but almost all are php based.
Question posted in Telegram API
A comprehensive official documentation can be found here.
A comprehensive official documentation can be found here.
2
Answers
You can use the Telegram API to send messages.
Yes you can program your telegram bot and send any message using javascript (using AJAX since the telegram bot api is a web request based api).
For example, you send message to a specific user by this:
Also you can use
POST
request to send data. For example:For more information see telegram bot api documentation: https://core.telegram.org/bots/api
Sorry for my bad English. Anyway, I hope this helps 🙂