236. Telegram傳送檔案
Why
突然想要懶一下,
定時送個檔案到TG上面,
怎麼傳文字我很清楚,但檔案還真的沒想法。
只打算弄個sh,不想寫code。
Solution
問了GPT很簡單,
就一行。
987654321
是 chat_id
bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11
是TG的機器人token
backup.zip
是檔案
samplefile
是附註
curl -F chat_id=987654321 \
-F document=@/path/to/backup.zip \
-F caption=samplefile \
https://api.telegram.org/bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11/sendDocument
ref. sendDocument
小補充,想在caption上面標注日期,方便尋找。
today=$(date +%F)
curl -F chat_id=987654321 \
-F document=@/path/to/backup.zip \
-F caption=samplefile-${today} \
https://api.telegram.org/bot123456:ABC-DEF1234ghIkl-zyx57W2v1u123ew11/sendDocument