1.在客户端进行左边搜索框上搜索“ BotFather ”,这是一个机器人他爹。
2.点 “/newbot ”,根据提示请输入一个机器人的名字,创建的机器人就显示这个名字
接着根据出现的提示再次输入用户名,这个用名字会在用户信息里看到
出现
Done! Congratulations on your new bot. You will find it at
telegram.me/用户名. You can now add a description, about section and profile picture for your bot, see /help for a list of commands. By the way, when you've finished creating your cool bot, ping our Bot Support if you want a better username for it. Just make sure the bot is fully operational before you do this.
Use this token to access the HTTP API:
0000000:AA00000000
For a description of the Bot API, see this page:
https://core.telegram.org/bots/api说明创建成功了
3.接着就是获取 ID(chat_id 或群组 ID)
方法一:
再次在左边搜索框上搜索“ get id ”,这是一个获取 Chat ID 机器人。
在聊天输入框里输入“/my_id ”即可获取自己的 chat_id 和 group chat id
ID 格式有区别
chat_id(22222222)
group chat id(-12345456)
方法二:
重点>>>先给自己或在群里发一条信息,然后浏览器上输入下面的链接
https://api.telegram.org/bot0000000:AA00000000/getupdates 返回的是 409 ?
group chat id 为一组带"-数字",例如-12345456
chat_id 为一组不带"-数字",例如 22222222
机械人给自己发信息:hi
https://api.telegram.org/bot0000000:AA00000000/sendmessage?chat_id=22222222&text=hi0000000:AA00000000 换成你的 Token
22222222 换为你的 chat_id
hi 换为你要发的信息
机器人给群发信息: hi
https://api.telegram.org/bot0000000:AA000000000/sendmessage?chat_id=-12345456&text=hi-12345456 换成你的 group chat id
chat_id 是唯一的
之前要给群推送消息,搜的一点东西,不知道有没有用