Closed
Description
It would be nice in the curl command if the headers lined up - just makes it a little easier to scan. So instead of:
curl "http://rad-example.herokuapp.com/orders" -d "{"order":{"name":"Order 1","paid":true,"email":"email@example.com"}}" -X POST -H "Accept: application/json" -H "Content-Type: application/json" -H "Host: example.org" -H "Cookie: "
you'd have:
curl "http://rad-example.herokuapp.com/orders" -d "{"order":{"name":"Order 1","paid":true,"email":"email@example.com"}}" -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Host: example.org" \
-H "Cookie: "
Also it's a little odd that the host doesn't match the domain in the URL, although thit might be harder to fix.
Metadata
Metadata
Assignees
Labels
No labels
Type
Projects
Milestone
Relationships
Development
No branches or pull requests
Activity
oestrich commentedon May 3, 2013
Fixed as of 4f20602