电报机器人开发-无法收到hook消息时查看异常方法
分类:api分享使用教程
时间:2023-06-04 19:25
浏览:0
评论:1
在开发机器人过程中 有时候我们的机器人监听不到群里或者私聊的消息,这时候我们要排查问题,
有效的方法就是直接访问电报官方的一个API接口:
https://api.telegram.org/bot你的机器人APITOKEN/getwebhookinfo
正常情况返回以下内容:
{ "ok": true, "result": { "url": "https://www.telegbot.com/api/bot/test", "has_custom_certificate": false, "pending_update_count": 0, "max_connections": 40, "ip_address": "113.124.81.108" } }
当有错误时就会显示错误error message 错误的原因,
常见:
ssl err错误(https不通)
server500错误(服务器异常)