如何使用curl触发电报/myCustomCommand
-命令?
当前/ myCustomCommand消息已登录到我的聊天中,但很明显,电报将此文本解释为消息而不是命令,因此什么也没发生。
这是我的脚本:
#!/bin/bash
TOKEN="xyz"
CHAT_ID="123"
MESSAGE="/myCustomCommand"
URL="https://api.telegram.org/bot$TOKEN/sendMessage"
curl -s -X POST $URL \
-d chat_id=$CHAT_ID \
-d text="$MESSAGE"
bot.command("myCustomCommand", (ctx)=>{
// will not be triggered
})
我该如何解决?任何帮助将不胜感激。