1
boris93 2022-11-22 12:53:26 +08:00 via iPhone
直接看 telegram 和 discord 的文档
telegram 机器人就是接收你发的指令,后端字符串匹配,匹配到了就进分支处理 |
2
boris93 2022-11-22 12:56:52 +08:00
比如一个 Google Script 写的 telegram 机器人后段是这样的
``` const COMMAND_START = "/start"; function doGet(event) { return HtmlService.createHtmlOutput("It's working!"); } function doPost(event) { var contents = JSON.parse(event.postData.contents); var command = String(contents['message']['text']); switch (command) { case COMMAND_START: sendChatId(contents); break; default: console.warn("command=%s message=Unknown command", command); break; } } ``` |
3
Davic1 OP @boris93 我其实更想要一种 bot api server , 可以自己搭建, 不需要某平台的帐号, 以 Web 形式暴露。Telegram bot api server 很不错, 可是他还需要有 Telegram 根据某个注册帐号, 获得认证密钥后,才可使用。
而且部署后,其他人应该也必须使用 telegram 才能使用注册在这个 bot server 的 bot ,有没有一种可以自己部署,并公开访问 bot (比如通过 Web ) 的框架 /模块? |
4
Davic1 OP @Davic1 Telegram bot srver: https://github.com/tdlib/telegram-bot-api#usage
|
6
krixaar 2022-11-22 14:31:42 +08:00
没看明白,你要找的是不是 PHP 教程?
|