-
-
Notifications
You must be signed in to change notification settings - Fork 103
Open
Description
curl request's don't contain content type header , it did not work on my first attempts
current version
curl --location --request POST 'http://localhost:3625/auth/signin' \ ✔
--data-raw '{
"Username":"passwall",
"Password":"password"
}'
working version with curl
curl --location --request POST 'http://localhost:3625/auth/signin' \ ✔
--header 'Content-Type: application/json' \
--data-raw '{
"Username":"passwall",
"Password":"password"
}'
Metadata
Metadata
Assignees
Labels
No labels