diff --git a/bashbot.sh b/bashbot.sh index 88c74a4..ae8356d 100755 --- a/bashbot.sh +++ b/bashbot.sh @@ -45,6 +45,7 @@ ACTION_URL=$URL'/sendChatAction' FORWARD_URL=$URL'/forwardMessage' INLINE_QUERY=$URL'/answerInlineQuery' ME_URL=$URL'/getMe' +DELETE_URL=$URL'/deleteMessage' ME=$(curl -s $ME_URL | ./JSON.sh/JSON.sh -s | egrep '\["result","username"\]' | cut -f 2 | cut -d '"' -f 2) @@ -145,6 +146,10 @@ send_html_message() { done } +delete_message() { + res=$(curl -s "$DELETE_URL" -F "chat_id=$1" -F "message_id=$2") +} + kick_chat_member() { res=$(curl -s "$KICK_URL" -F "chat_id=$1" -F "user_id=$2") }