9 lines
475 B
Bash
9 lines
475 B
Bash
#! /bin/bash
|
|
|
|
api_response="$(curl -i -sS localhost:3000/api)"
|
|
csrf_key="xsrf-token"
|
|
csrf_token="$(echo "$api_response" | grep -o '"csrfToken":[^,]*' | tr ':' '\n' | jq -r . | tail -n 1)"
|
|
notea_auth_cookie="$(echo "$api_response" | grep ^set.cookie: | sed 's/^set.cookie: //' | tr ';' '\n' | head -n 1)"
|
|
curl --fail -sS -X POST localhost:3000/api/notes/$ID -H "$csrf_key: $csrf_token" -b "$notea_auth_cookie" -H 'Content-Type: application/json' -d '{"content": "g"}'
|
|
echo $?
|