[Go] 快速实现电报机器人
Telebot is a Telegram bot framework in Go. 先登录telegram创建机器人,创建机器人获取到 ,可以通过API查询。 1 curl -s 'https://api.telegram.org/bot<TOKEN>/getMe' 响应结果 1 {"ok":true,"result":{"id":6906901111,"is_bot":true,"first_name":"test","username":"test","can_join_groups":true,"can_read_all_group_messages":false,"supports_inline_queries":false}} 实现电报机器人示例: 1 2 3 4 5 6