Telegeram Bot中`msg.chat.id`和`msg.from.id`的区别是什么?

时间:2017-03-14 11:57:41

标签: telegram-bot node-telegram-bot-api

Telegeram Bot中msg.chat.idmsg.from.id之间的区别是什么? 显然,两者都是相同的并且返回用户ID。

bot.sendMessage(msg.chat.id, 'Hi', opts)

bot.sendMessage(msg.from.id, 'Hi', opts)

1 个答案:

答案 0 :(得分:7)

chatId 是聊天的唯一标识符,可以是privategroupsupergroupchannel,而 userId 是仅用户或机器人的唯一标识符。

唯一的值可以是私人聊天。

详细了解电报类型here