Reputation: 85
I'm trying to understand telegram api (with node js) and now got this question. Is it really to create "form" and send custom message for all who using this bot? I.e. without restarting bot send message :)
Upvotes: 0
Views: 1026
Reputation: 2676
The only way is:
You need to store all the users IDs somewhere. And after that you can sendMessage to all that IDs one by one.
Upvotes: 2