generated from fahricansecer/boilerplate-be
28 lines
912 B
Bash
Executable File
28 lines
912 B
Bash
Executable File
#!/bin/bash
|
|
echo "Logging in..."
|
|
LOGIN_RES=$(curl -s -X POST http://localhost:3000/api/auth/login \
|
|
-H "Content-Type: application/json" \
|
|
-d '{"email":"admin@contentgen.ai","password":"Admin123!"}')
|
|
|
|
TOKEN=$(echo $LOGIN_RES | grep -o '"accessToken":"[^"]*' | cut -d'"' -f4)
|
|
if [ -z "$TOKEN" ]; then
|
|
echo "Login failed!"
|
|
exit 1
|
|
fi
|
|
|
|
echo "Creating standard project..."
|
|
curl -s -X POST http://localhost:3000/api/projects \
|
|
-H "Content-Type: application/json" \
|
|
-H "Authorization: Bearer $TOKEN" \
|
|
-d '{"title":"Test Std Project","prompt":"Belgesel","language":"tr","videoStyle":"CINEMATIC","aspectRatio":"PORTRAIT_9_16","targetDuration":60}' > std_res.json
|
|
|
|
echo "Raw Standard Response:"
|
|
cat std_res.json
|
|
|
|
echo -e "\nListing ALL projects..."
|
|
curl -s -X GET "http://localhost:3000/api/projects?limit=5" \
|
|
-H "Authorization: Bearer $TOKEN" > list_res.json
|
|
|
|
echo "Raw List Response:"
|
|
cat list_res.json
|