Consider the following "works for me" Curl command:
curl http://192.168.2.131:6800/schedule.json -d project=a -d spider=b
.
I have no idea how to execute this POST in Paw. The curl importer in Paw transforms this to one body parameter: project=a&spider=b
Which the curl exporter translates to: curl -X "POST" "http://192.168.2.131:6800/schedule.json" \
-H "Content-Type: text/plain" \
-d "project=a&spider=b"
However the server part does not accept either Paw or the exported Curl command unfortunately. It needs two -d parameters. In case you are wondering which thing accepts these commands it is the Scrapy Daemon: scrapyd
So the question is how can I execute two (or more) -d parameters in Paw?