예를 들어, -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)
내가 게시 한 데이터에 대한 언급이 없습니다.
cURL에 출력에 “firstname = john & lastname = doe”문자열을 표시하는 옵션이 있습니까?
참고 : 분명히 원하는 문자열은 내가 실행 한 명령에 있지만 –form 및 –data-ascii 등과 같은 몇 가지 다른 게시 옵션이 있습니다. 원시 데이터가 서버로 전송되는 것을보고 싶습니다.
답변
내가 사용하지 않은 가장 가까운 tcpdump
것은 --trace-ascii
옵션을 사용하는 것입니다.
~ curl http://w3.org/ -d "hello=there" --trace-ascii /dev/stdout
== Info: About to connect() to w3.org port 80 (#0)
== Info: Trying 128.30.52.45... == Info: connected
== Info: Connected to w3.org (128.30.52.45) port 80 (#0)
=> Send header, 210 bytes (0xd2)
0000: POST / HTTP/1.1
0011: User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.1
0051: 9.7 OpenSSL/0.9.8l zlib/1.2.3
0070: Host: w3.org
007e: Accept: */*
008b: Content-Length: 11
009f: Content-Type: application/x-www-form-urlencoded
00d0:
=> Send data, 11 bytes (0xb)
0000: hello=there
불행히도 게시 할 때 작동하지 않습니다 multipart/form-data
.
~ curl http://w3.org/ -F hello=there -F testing=123 --trace-ascii /dev/stdout
== Info: About to connect() to w3.org port 80 (#0)
== Info: Trying 128.30.52.45... == Info: connected
== Info: Connected to w3.org (128.30.52.45) port 80 (#0)
=> Send header, 270 bytes (0x10e)
0000: POST / HTTP/1.1
0011: User-Agent: curl/7.19.7 (universal-apple-darwin10.0) libcurl/7.1
0051: 9.7 OpenSSL/0.9.8l zlib/1.2.3
0070: Host: w3.org
007e: Accept: */*
008b: Content-Length: 244
00a0: Expect: 100-continue
00b6: Content-Type: multipart/form-data; boundary=--------------------
00f6: --------19319e4d1b79
010c:
<= Recv header, 32 bytes (0x20)
0000: HTTP/1.1 301 Moved Permanently
답변
또는 https://httpbin.org/로 테스트 할 수 있습니다
$ curl https://httpbin.org/post -d "firstname=john&lastname=doe"
{
"args": {},
"data": "",
"files": {},
"form": {
"firstname": "john",
"lastname": "doe"
},
"headers": {
"Accept": "*/*",
"Content-Length": "27",
"Content-Type": "application/x-www-form-urlencoded",
"Host": "httpbin.org",
"User-Agent": "curl/7.43.0"
},
"json": null,
"origin": "78.228.163.126",
"url": "https://httpbin.org/post"
}
답변
netcat 대안을 추가하고 싶습니다
#!/bin/bash
nc -l 8080 &
curl "http://localhost:8080" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
--data @<(cat <<EOF
{
"me": "$USER",
"something": $(date +%s)
}
EOF
)