Created
February 11, 2022 21:28
-
-
Save augustin64/8e3c0c969227fdf5ce516da413c7b5b0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
NOM="NOM_UTILISE_POUR_LA_COMMANDE" | |
if [[ ! $1 ]]; then | |
echo "Quelle est la référence du ticket ?" | |
read -r REF | |
else | |
REF="$1" | |
fi; | |
REPONSE=$(curl \ | |
--silent \ | |
-X POST \ | |
-H "Content-Type: application/json" \ | |
-d "{\"reference\":\"$REF\", \"name\":\"$NOM\", \"trainNumber\":\"\",\"without21NetConnection\":false}" \ | |
https://wifi.sncf/router/api/connection/activate) | |
STATUS=$(echo "$REPONSE" | jq '.status') | |
if [[ $STATUS = "503" ]]; then | |
echo "Connecté avec succès. <Response [$STATUS]>" | |
elif [[ $STATUS == "409" ]]; then | |
echo "IL semblerait que vous soyez déjà connecté <Response [$STATUS]>" | |
fi; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment