Add delete message support

since API v3 its possible to delete bot messages or any message if your bot is admin.
This commit is contained in:
Kay Marquardt 2019-03-11 15:41:21 +01:00 committed by GitHub
parent 44d96a9b8b
commit 9d149bde7a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -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")
}