Hs anfibio bot: Difference between revisions
From HSS
No edit summary |
m (C0 moved page Hs EnviarTelegram to Hs anfibio bot: la idea del bot es que no solo se comunique con telegram) |
Latest revision as of 11:09, 19 March 2024
#!/bin/sh
token="70xxyyzz01:AAxxxxxxxxxxyyyyyyyyyyzzzzzzzzzzcBM"
chat_id="-1012233344449"
if [ -z "$1" ]; then
msj="$(whoami) @ $(date)"
else
msj="$1"
fi
curl --header "Content-Type: application/json" \
--request POST \
--data "{\"chat_id\":\"$chat_id\",\"parse_mode\":\"Markdown\",\"text\":\"$msj\"}" \
https://api.telegram.org/bot"$token"/sendMessage