mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
20 lines
357 B
Plaintext
20 lines
357 B
Plaintext
POST http://localhost:8000/form-params
|
|
[FormParams]
|
|
param1: value1
|
|
param2:
|
|
param3: a=b
|
|
param4: a%3db
|
|
values\u{5b}0\u{5d}: 0
|
|
values[1]: 1
|
|
|
|
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&values[0]=0&values[1]=1```
|
|
|
|
HTTP/1.0 200
|
|
|
|
|