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)
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
ESTE CÓDIGO HAY QUE IMPLEMENTARLOOOOO para que tome las variables (corchetes).
<pre>
<pre>
#!/bin/sh
#!/bin/sh


token="70xxyyzz01:AAxxxxxxxxxxyyyyyyyyyyzzzzzzzzzzcBM"
#
chat_id="-1012233344449"
# aquí se procesa la entrada de info desde el prompt u_u

#
if [ -z "$1" ]; then
msj="$(whoami) @ $(date)"
else
msj="$1"
fi


curl --header "Content-Type: application/json" \
curl --header "Content-Type: application/json" \
--request POST \
--request POST \
--data '{"chat_id":"[CHAT-ID]","parse_mode":"Markdown","text":"[TEXTO]"}' \
--data "{\"chat_id\":\"$chat_id\",\"parse_mode\":\"Markdown\",\"text\":\"$msj\"}" \
https://api.telegram.org/bot[TOKEN]/sendMessage
https://api.telegram.org/bot"$token"/sendMessage
</pre>
</pre>



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