You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
300 B

#!/bin/bash
if [ "$#" -ne 1 ]; then
echo "Usage: ./test_app.sh <image_path>"
exit 1
fi
IMAGE_PATH="$1"
curl -X POST \
-H "Content-Type: multipart/form-data" \
-F "image=@${IMAGE_PATH}" \
-F "text=Sample Text" \
-F "blocks=Block 1" \
-F "blocks=Block 2" \
http://localhost:5000/api