我想清除pending_update_count
我的机器人中的所有内容!
以下命令的输出:
https://api.telegram.org/botxxxxxxxxxxxxxxxx/getWebhookInfo
显然我用 xxx 替换了真正的 API 令牌
这是 :
{
"ok":true,"result":
{
"url":"",
"has_custom_certificate":false,
"pending_update_count":5154
}
}
如您所见,到目前为止,我还有5154
未读的更新!(我很确定这个待处理的更新是错误的!因为没有人使用这个机器人!它只是一个测试机器人)
顺便说一句,这个pending_update_count
数字增长得如此之快!现在我正在写这篇文章,这个数字增加51
了,达到了 5205 !
我只想清除这个待处理的更新。我很确定这个机器人已经陷入了无限循环!
有没有办法摆脱它?
PS:
我还清除了 webhook url。但什么都没有改变!
更新:
的输出getWebhookInfo
是这样的:
{
"ok":true,
"result":{
"url":"https://somewhere.com/telegram/webhook",
"has_custom_certificate":false,
"pending_update_count":23,
"last_error_date":1482910173,
"last_error_message":"Wrong response from the webhook: 500 Internal Server Error",
"max_connections":40
}
}
为什么我得到Wrong response from the webhook: 500 Internal Server Error
?