mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 00:44:55 +03:00
31 lines
543 B
Plaintext
31 lines
543 B
Plaintext
GET http://localhost:8000/querystring-params
|
|
[QueryStringParams]
|
|
param1: value1
|
|
param2:
|
|
param3: a=b
|
|
param4: 1,2,3
|
|
$top: 5
|
|
HTTP 200
|
|
|
|
|
|
# same version as raw
|
|
GET http://localhost:8000/querystring-params?param1=value1¶m2=¶m3=a%3db¶m4=1,2,3&$top=5
|
|
HTTP 200
|
|
|
|
|
|
# combine version
|
|
GET http://localhost:8000/querystring-params?param1=value1
|
|
[QueryStringParams]
|
|
param2:
|
|
param3: a=b
|
|
param4: 1,2,3
|
|
$top:5
|
|
HTTP 200
|
|
|
|
|
|
# encoding slash
|
|
GET http://localhost:8000/querystring-params-encoded?value1=/&value2=%2F
|
|
[QueryStringParams]
|
|
value3:/
|
|
HTTP 200
|