4
cURL을 사용하여 POST 데이터를 어떻게 표시합니까?
예를 들어, -v 인수를 사용하여 웹 서버에 POST : curl -v http://testserver.com/post -d "firstname=john&lastname=doe" 그리고 출력 > 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) 내가 게시 한 데이터에 대한 …