2011-06-01 09:10:14 +0000 2011-06-01 09:10:14 +0000
149
149
Advertisement

Como se exibem os dados POST com cURL?

Advertisement

Como exemplo, o POST para um servidor 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 há menção dos dados que publiquei.

Existe uma opção em cURL para mostrar a string “firstname=john&lastname=doe” na saída?

Nota: Obviamente a string que quero está no comando que executei, mas existem várias outras opções de postagem, tais como -form e –data-ascii etc. Gostaria de ver os dados em bruto a serem enviados para o servidor.

Advertisement
Advertisement

Respostas (4)

184
184
184
2011-06-01 10:50:42 +0000

O mais próximo que estive sem usar a opção tcpdump está a usar a opção --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

Infelizmente, isto não funciona quando se publica 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
36
36
36
2016-09-30 09:21:56 +0000

Ou pode testar com 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": "*.*.*.*", 
  "url": "https://httpbin.org/post"
}
15
Advertisement
15
15
2017-05-21 13:04:14 +0000
Advertisement

Gostaria de adicionar netcat alternativa

#!/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
)
9
9
9
2014-08-28 13:51:51 +0000

Poderia usar Charles e curl --proxy localhost:8888. Simples!

Advertisement

Questões relacionadas

7
16
19
8
5
Advertisement
Advertisement