My telegram bot receives messages sent by user to my bot in private chats but not receives messages sent by users in group chats. Any options/api for getting group chat messages also,.
6 Answers
Talk to @botfather and disable the privacy mode.

- 14,778
- 4
- 49
- 73
-
30take into account that you have to set it off before adding to chat. Otherwise you have to remove it and add it again – Artiom Nov 07 '16 at 11:53
-
3That is not really true, you can do it before, after, during... whenever you want. – apascualb Aug 01 '17 at 15:15
-
12I'm not sure, but kicking the bot and adding it back solved my problem. Took me hours= =. **you have to set it off before adding to chat** – SCaffrey Mar 22 '18 at 16:14
-
1Another note is that the bot MUST be an admin on that group, regardless of the privacy settings. Otherwise, it will NOT be able to read any of the group messages. – Binar Web Jun 01 '19 at 15:52
-
6No, either the bot needs to be an admin OR privacy mode needs to be disabled. – Johannes Kuhn Jun 11 '19 at 07:23
Sequence within a BotFather chat:
You: /setprivacy
BotFather: Choose a bot to change group messages settings.
You: @your_name_bot
BotFather: 'Enable' - your bot will only receive messages that either start with the '/' symbol or mention the bot by username.
'Disable' - your bot will receive all messages that people send to groups.
Current status is: ENABLED
You: Disable
BotFather: Success! The new status is: DISABLED. /help

- 1,049
- 8
- 6
-
-
13I want to make an addition. I have noticed that if you give your bot the administrative rights in the group, than it has ability to see all messages, regardless of /setprivacy setting. – Gooman Apr 20 '18 at 18:50
By default A Bot will receive only messages addressed to it by any user directly via posting by /command@YourBot any message you send
.
After that it vill be available via getUpdates API call.
In browser it will be:
https://api.telegram.org/botToken/getupdates
Find the related message in output JSON and grab chatId. It will allow you to answer back with:
https://api.telegram.org/botToken/sendmessage?chat_id=123456788&text=My Answer

- 756
- 9
- 19
-
I'm getting {"ok":false,"error_code":401,"description":"Unauthorized"} when I call getupdates – Enrique Dec 25 '19 at 12:50
-
-
try this https: //api.telegram.org/bot{token}/sendMessage?chat_id=
&text= – fperez Jan 13 '23 at 15:31
You can access all avaliable settings from all of your bots by sending /mybots
to Botfather
. Choose the bot, then Bot Settings and Group Privacy. If its disable (default), you can tap on Turn off.
Now its possible to receive the chat history using GetUpdates
. This can be done via HTTP API or the frameworks. For example, in C# (.NET Core) like this:
var bot = new TelegramBotClient(ApiToken);
var updates = bot.GetUpdatesAsync().Result;
foreach(var update in updates) {
Console.WriteLine($"{update.ChannelPost.Date} {update.ChannelPost.Text}");
}
But keep in mind that this feature has some kind of perfect forward secrecy implemented. So you only get messages that were send after group privacy is disabled. As a result, the GetUpdates
result is empty until some post was made.

- 16,606
- 23
- 86
- 148
if you added your bot before disable the privacy mode, you should remove the bot from the group and add it again

- 12,743
- 6
- 56
- 63