TOKEN=XXXX:XXXXXXXXXXXXXX #TG机器人token
chat_ID=XXXXX #用户ID或频道、群ID
message_text="xxxxx" #要发送的信息
MODE='HTML' #解析模式,可选HTML或Markdown
URL="https://api.telegram.org/bot${TOKEN}/sendMessage" #api接口
#测试1:终端有日志
curl -s -X POST $URL -d chat_id=${chat_ID} -d parse_mode=${MODE} -d text="${message_text}"
#测试2:终端无日志
curl -s -o /dev/null -X POST $URL -d chat_id=${chat_ID} -d text="${message_text}"
curl -s \
-X POST https://api.telegram.org/bot$BOT_API_KEY/sendSticker \
-d sticker="CAADAgAD3QADMNSdEY1VJRWnGm6vFgQ" \
-d chat_id=$CHAT_ID
curl \
-F chat_id=$chat_ID \
-F document=@"v2.sh" \
https://api.telegram.org/bot$TOKEN/sendDocument
curl -s \
-X POST "https://api.telegram.org/bot${TOKEN}/sendPhoto" \
-F chat_id=$chat_ID \
-F photo="@baiyue.jpg"
/sendVideo
/sendVoice
/sendLocation
/sendVenue
/sendChatAction