check if payload secrets match env variable secrets

This commit is contained in:
m0veax
2024-06-28 23:03:58 +02:00
parent 5bb55e9177
commit b4938c904e
3 changed files with 37 additions and 2 deletions

View File

@ -1,4 +1,16 @@
#!/bin/sh
## starte server mit env vars passend zum ersten aufruf
## TODO das muss noch gescripted werden
# should return 201
curl -XPOST \
-H "Content-Type: application/json" \
--data '{"consumer_key": "","consumer_secret":"","aerie":true }' \
http://localhost:3000/api/update
--data '{"consumer_key": "test123","consumer_secret":"123test","aerie":true }' \
http://localhost:3000/api/update -vvv
#should return 500
curl -XPOST \
-H "Content-Type: application/json" \
--data '{"consumer_key": "test123","consumer_secret":"123test","aerie":true }' \
http://localhost:3000/api/update -vvv