I have a problem posting JSON via curl from cmd (Windows7) to Flask RESTful. This is what I post:
curl.exe -i -H \"Content-Type: application/json\" \\ -H \"Acce
-d '{"Hello":"Karl"}' doesn't work from windows as its surrounded by single quotes. Use double quotes around and it will work for you.
-d '{"Hello":"Karl"}'
-d "{\"Hello\":\"Karl\"}"