情况是这样的: 使用 curl -X POST,然后 Telegram Bot 给 Channel 发消息
curl -X POST "https://api.telegram.org/bot<API Token>/sendMessage" -d "chat_id=<Chat ID>&disable_notification=true&text=https://www.netxautomation.com:8443/display/BMS20/HTTP2%3A+Using+the+HTTP+module+to+send+Telegram+messages" 但是 Channel 那边收到的是
https://www.netxautomation.com:8443/display/BMS20/HTTP2: Using the HTTP module to send Telegram messages 而不是
https://www.netxautomation.com:8443/display/BMS20/HTTP2%3A+Using+the+HTTP+module+to+send+Telegram+messages 相当于它把 %3A 替换成了 :,把 + 替换成了 (空格)
这就导致了你在 Channel 中无法直接点链接,因为它已经不是一个完整的可点击的链接了。
搜 Goole 搜了好长时间,没有找到解决方法,不知道大家有没有类似问题的解决经验,求教。
