4
Làm thế nào để bạn hiển thị dữ liệu POST với cURL?
Ví dụ: POST lên máy chủ web với đối số -v: curl -v http://testserver.com/post -d "firstname=john&lastname=doe" Và đầu ra > 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) Không có …