markdown 向Telegram发送通知消息(通过cURL)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 向Telegram发送通知消息(通过cURL)相关的知识,希望对你有一定的参考价值。

Create a bot, gets its API token, get the ID of the channel.

https://core.telegram.org/bots/api#sendmessage
```shell
$ curl -X POST \
       -H 'Content-Type: application/json' \
       -d '{"chat_id": "541123411", "text": "This is a test from curl", "disable_notification": true}' \
       https://api.telegram.org/bot$TELEGRAM_BOT_TOKEN/sendMessage
```

以上是关于markdown 向Telegram发送通知消息(通过cURL)的主要内容,如果未能解决你的问题,请参考以下文章

如何使用 PHP 每分钟向电报机器人发送通知?

text 从机器人向Telegram用户发送消息

使用 Telegram - API 或 CLI 发送消息?

Telegram 向 webhook 发送重复的 POST JSON 请求

Android - 向特定号码发送电报消息

找出我自己的用户 ID 以使用 Telegram API 发送消息