DEV Community

Discussion on: Sending messages with Telegram bot

Collapse
 
innocuousgee profile image
Creamy Uprising!

Hi can i send a message to an individual rather than a group please

Collapse
 
rizkyrajitha profile image
Rajitha Gunathilake

hi ,
most of articles say it is not possible but i don't know it for sure.
if i found something i'll let you know.

Collapse
 
rizkyrajitha profile image
Rajitha Gunathilake

this might help you

Send a message to your bot then retrieve the update with:

https://api.telegram.org/bot<BOTID>/getUpdates

In the json string returned you will find you chat_id/user_id.
In single chat with the bot chat_id is equal to user_id.
Now you can send your message with:

https://api.telegram.org/bot<BOTID>/sendMessage?chat_id="yourchatid"&text="Hello!"

stackoverflow.com/a/32777943/9374003