From 120866a805d8e3804b55f935de7efc00cdd60fbb Mon Sep 17 00:00:00 2001 From: Juan Potato Date: Tue, 24 Nov 2015 22:07:39 -0500 Subject: [PATCH] send_photo --- bashbot.sh | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/bashbot.sh b/bashbot.sh index 36f6aa3..2c0c288 100755 --- a/bashbot.sh +++ b/bashbot.sh @@ -1,5 +1,5 @@ # bashbot, the Telegram bot written in bash. -# Written by @topkecleon. +# Written by @topkecleon and Juan Potato (@awkward_potato) # http://github.com/topkecleon/bashbot # Depends on JSON.sh (http://github.com/dominictarr/JSON.sh), @@ -12,12 +12,17 @@ TOKEN='' URL='https://api.telegram.org/bot'$TOKEN -MSG_URL=$URL'/sendMessage?chat_id=' +MSG_URL=$URL'/sendMessage' +PHO_URL=$URL'/sendPhoto' UPD_URL=$URL'/getUpdates?offset=' OFFSET=0 function send_message { - res=$(curl --data-urlencode "text=$2" "$MSG_URL$1&") + res=$(curl "$MSG_URL" -F "chat_id=$1" -F "text=$2") +} + +function send_photo() { + res=$(curl "$PHO_URL" -F "chat_id=$1" -F "photo=@$2") } while true; do {