eden-api-gateway/login_user.sh
Michael Pilosov ea25116d1c working app
2023-03-18 17:21:35 -06:00

17 lines
306 B
Bash
Executable File

#!/bin/bash
if [ "$#" -ne 2 ]; then
echo "Usage: ./login_user.sh <username> <password>"
exit 1
fi
USERNAME="$1"
PASSWORD="$2"
curl -X POST \
-H "Content-Type: application/x-www-form-urlencoded" \
-c cookies.txt \
-d "username=${USERNAME}&password=${PASSWORD}" \
http://localhost:5000/login