From 2c757cdfeb88ca51b27aa5e4cf030c6b005e8edb Mon Sep 17 00:00:00 2001 From: Samuel FORESTIER Date: Wed, 20 Sep 2017 17:03:35 -0400 Subject: [PATCH] Just don't use the `--insecure` CURL's option anymore (fixes #2) --- send-notification.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/send-notification.sh b/send-notification.sh index c968a0e..a7c0d58 100644 --- a/send-notification.sh +++ b/send-notification.sh @@ -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 \