Reputation: 51
I create a bot, add that bot to my group and now I can send messages to group via api: https://api.telegram.org/bot' + token + '/sendMessage' + '?chat_id=' + chat_id + '&text=' + text
And that message is visible to everyone in a group. How can I send a message in a group that is visible only to a specific user (I have a user id)?
Upvotes: 3
Views: 5433
Reputation: 1939
You cannot send a user specific message in a group. Still you have other options:
Upvotes: 3