4
Como você exibe os dados do POST com cURL?
Como exemplo, POSTing para um servidor da web com o argumento -v: curl -v http://testserver.com/post -d "firstname=john&lastname=doe" E a saída > POST /post HTTP/1.1 > User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.19.7 OpenSSL/0.9.8l zlib/1.2.3 > Host: testserver.com > Accept: */* > Content-Length: 28 > Content-Type: application/x-www-form-urlencoded > < HTTP/1.1 200 OK (etc) Não …