Just don't use the --insecure
CURL's option anymore (fixes #2)
This commit is contained in:
parent
afccc39b37
commit
2c757cdfeb
@ -1,6 +1,5 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
#
|
|
||||||
# Script d'envoi de notification SMS via l'API Free Mobile
|
# Script d'envoi de notification SMS via l'API Free Mobile
|
||||||
# https://github.com/C-Duv/freemobile-smsapi-client
|
# https://github.com/C-Duv/freemobile-smsapi-client
|
||||||
#
|
#
|
||||||
@ -147,16 +146,12 @@ FINAL_MESSAGE_TO_SEND=$(\
|
|||||||
# echo "Newline encoded message:" #DEBUG
|
# echo "Newline encoded message:" #DEBUG
|
||||||
# echo "${FINAL_MESSAGE_TO_SEND}" #DEBUG
|
# echo "${FINAL_MESSAGE_TO_SEND}" #DEBUG
|
||||||
|
|
||||||
# Particularités de l'appel de curl et la/les options associées :
|
# Particularités de l'appel de curl et son option associée :
|
||||||
# * Le certificat de $SMSAPI_BASEURL ne fourni pas d'informations sur son
|
|
||||||
# propriétaire :
|
|
||||||
# --insecure
|
|
||||||
# * Renvoi le code réponse HTTP uniquement :
|
# * Renvoi le code réponse HTTP uniquement :
|
||||||
# --write-out "%{http_code}" --silent --output /dev/null
|
# --write-out "%{http_code}" --silent --output /dev/null
|
||||||
#
|
#
|
||||||
HTTP_STATUS_CODE=$(\
|
HTTP_STATUS_CODE=$(\
|
||||||
curl \
|
curl \
|
||||||
--insecure \
|
|
||||||
--write-out "%{http_code}" \
|
--write-out "%{http_code}" \
|
||||||
--silent \
|
--silent \
|
||||||
--output /dev/null \
|
--output /dev/null \
|
||||||
|
Loading…
Reference in New Issue
Block a user