mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-24 04:31:37 +03:00
18 lines
297 B
Plaintext
18 lines
297 B
Plaintext
POST http://localhost:8000/form-params
|
|
[FormParams]
|
|
param1: value1
|
|
param2:
|
|
param3: a=b
|
|
param4: a%3db
|
|
|
|
HTTP/1.0 200
|
|
|
|
# same version as raw
|
|
POST http://localhost:8000/form-params
|
|
Content-Type: application/x-www-form-urlencoded
|
|
```param1=value1¶m2=¶m3=a%3db¶m4=a%253db```
|
|
|
|
HTTP/1.0 200
|
|
|
|
|