Skip to content

Instantly share code, notes, and snippets.

@augustin64
Created February 11, 2022 21:28
Show Gist options
  • Save augustin64/8e3c0c969227fdf5ce516da413c7b5b0 to your computer and use it in GitHub Desktop.
Save augustin64/8e3c0c969227fdf5ce516da413c7b5b0 to your computer and use it in GitHub Desktop.
#!/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