Hs anfibio bot

From HSS
Revision as of 11:09, 19 March 2024 by C0 (talk | contribs) (C0 moved page Hs EnviarTelegram to Hs anfibio bot: la idea del bot es que no solo se comunique con telegram)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
#!/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