Compare commits
No commits in common. "ea784b0da332505a5b89daaf0ed7bf41c0a7766a" and "d8088a9ced767e7c758296eee87844377b694aa2" have entirely different histories.
ea784b0da3
...
d8088a9ced
@ -1,26 +1,8 @@
|
||||
#!/bin/sh
|
||||
USER_ID=`curl -X POST http://localhost:5287/api/Users -d '{"Email":"hej@example.com","Username":"Gamer","Password":"Gamer123!"}' --header 'Content-Type: application/json'`
|
||||
|
||||
RESPONSE=`curl -sSLX POST http://localhost:5287/api/Users -d '{"Email":"hej@example.com","Username":"Gamer","Password":"Gamer123!"}' -H 'Content-Type: application/json' -H 'Accept: */*' -w '\n%{http_code}' --output -`
|
||||
HTTP_STATUS=`echo -n "$RESPONSE" | tail -n 1`
|
||||
USER_ID=`echo "$RESPONSE" | head -n -1`
|
||||
TOKEN=`curl -X POST http://localhost:5287/api/Users/login -d '{"Email":"hej@example.com","Password":"Gamer123!"}' --header 'Content-Type: application/json'`
|
||||
|
||||
echo "POST /api/Users - $HTTP_STATUS"
|
||||
echo -e " User ID: $USER_ID\n"
|
||||
curl http://localhost:5287/api/Users/$USER_ID
|
||||
|
||||
RESPONSE=`curl -sSLX POST http://localhost:5287/api/Users/login -d '{"Email":"hej@example.com","Password":"Gamer123!"}' -H 'Content-Type: application/json' -H 'Accept: */*' -w '\n%{http_code}' --output -`
|
||||
HTTP_STATUS=`echo -n "$RESPONSE" | tail -n 1`
|
||||
TOKEN=`echo "$RESPONSE" | head -n -1`
|
||||
|
||||
echo "POST /api/Users/login - $HTTP_STATUS"
|
||||
echo -e " Received token: $TOKEN\n"
|
||||
|
||||
RESPONSE=`curl -sSL http://localhost:5287/api/Users/$USER_ID -w '\n%{http_code}' -H 'Accept: */*' --output -`
|
||||
HTTP_STATUS=`echo -n "$RESPONSE" | tail -n 1`
|
||||
USER_DATA=`echo "$RESPONSE" | head -n -1`
|
||||
|
||||
echo "GET /api/Users/$USER_ID - $HTTP_STATUS"
|
||||
echo -e " User data: $USER_DATA\n"
|
||||
|
||||
HTTP_STATUS=`curl -sSLX DELETE http://localhost:5287/api/Users/$USER_ID --location-trusted -w '%{http_code}' -H "Authorization: Bearer $TOKEN" -H 'Accept: */*'`
|
||||
echo "DELETE /api/Users/$USER_ID - $HTTP_STATUS"
|
||||
curl -X DELETE http://localhost:5287/api/Users/$USER_ID
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user