Move tempfile to /tmp/ and make it consistent

callerid
Gandalf 2021-03-11 10:45:59 +01:00
parent 4942f24344
commit c6eca387c1
1 changed files with 3 additions and 3 deletions

6
fax.sh
View File

@ -23,11 +23,11 @@ then
exit 2
fi
#save payload to tempfile to prevent curl from throwing 'argument list too long' error.
echo '{"faxlineId":"f0", "recipient":"'${REC}'", "filename":"fax.pdf", "base64Content":"'${CONTENT}'"}' > $BASEPATH/.data.txt
echo '{"faxlineId":"f0", "recipient":"'${REC}'", "filename":"fax.pdf", "base64Content":"'${CONTENT}'"}' > /tmp/sipgatedata.txt
#Send fax
FAXID=$(curl --request POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data @data.txt "https://api.sipgate.com/v2/sessions/fax" -s | jq '.sessionId' | sed -e 's:"::g' )
FAXID=$(curl --request POST --header 'Content-Type: application/json' --header 'Accept: application/json' --header "Authorization: Bearer $AUTH_TOKEN" --data @/tmp/sipgatedata.txt "https://api.sipgate.com/v2/sessions/fax" -s | jq '.sessionId' | sed -e 's:"::g' )
#remove tempfile
rm $BASEPATH/.data.txt
rm /tmp/sipgatedata.txt
if [ -z $FAXID ]
then
echo "Something went wrong, I didn't receive some fax id back."