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
|
||||
|
||||
#
|
||||
# Script d'envoi de notification SMS via l'API Free Mobile
|
||||
# https://github.com/C-Duv/freemobile-smsapi-client
|
||||
#
|
||||
@ -147,16 +146,12 @@ FINAL_MESSAGE_TO_SEND=$(\
|
||||
# echo "Newline encoded message:" #DEBUG
|
||||
# echo "${FINAL_MESSAGE_TO_SEND}" #DEBUG
|
||||
|
||||
# Particularités de l'appel de curl et la/les options associées :
|
||||
# * Le certificat de $SMSAPI_BASEURL ne fourni pas d'informations sur son
|
||||
# propriétaire :
|
||||
# --insecure
|
||||
# Particularités de l'appel de curl et son option associée :
|
||||
# * Renvoi le code réponse HTTP uniquement :
|
||||
# --write-out "%{http_code}" --silent --output /dev/null
|
||||
#
|
||||
HTTP_STATUS_CODE=$(\
|
||||
curl \
|
||||
--insecure \
|
||||
--write-out "%{http_code}" \
|
||||
--silent \
|
||||
--output /dev/null \
|
||||
|
Loading…
Reference in New Issue
Block a user