gpt4 book ai didi

bash - 在 Telegram 按钮 bash 中发送自定义 URL

转载 作者:行者123 更新时间:2023-12-04 16:30:15 26 4
gpt4 key购买 nike

我用 bash 编写了这段代码,用于使用 Telegram Bot 发送消息,现在我需要使用自定义 URL 发送消息。

这是我的实际代码:

sendTelegram() {
curl -s \
-X POST \
https://api.telegram.org/bot$apiToken/sendMessage \
-d text="$download" \
-d chat_id=$userChatId
}

如何在 URL 按钮中发送消息 $download,例如:

URL Button Telegram

最佳答案

您需要使用 reply_markup 中的 inline_keyboard 并发送带有 JSON 内容类型 header 的 POST 请求:

curl -d '{"chat_id":7455490, "text":"pruebax", "reply_markup": {"inline_keyboard": [[{"text":"LaResistencia.co", "url": "http://laresistencia.co"}]]} }' -H "Content-Type: application/json" -X POST https://api.telegram.org/bot$apiToken/sendMessage

查看 Telegram bot API inline_keyboard 部分以获取有关参数的更多信息: https://core.telegram.org/bots/api#inlinekeyboardbutton

Telegram bot bash inline_keyboard

关于bash - 在 Telegram 按钮 bash 中发送自定义 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49061656/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com