我想查看机器人通过API / https向我的频道发布的最新帖子 我尝试了getUpdates,它只显示我发送给机器人的消息。我想查看该机器人广播到我的频道的消息
https://api.telegram.org/botxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx/getUpdates
答案 0 :(得分:0)
getUpdates
方法仅检索普通用户发送给机器人的消息。漫游器无法看到其他漫游器消息,这意味着它无法看到自己的消息。但是,您可以在代码逻辑中跟踪机器人发送的消息。例如。在Node.js中,您将执行以下操作:
bot.sendMessage(channelId, "The message sent to the channel").then(ctx => {
// ctx contains the details of the message sent to the channel
// you can do whatever you want with it
});