mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 13:56:01 +03:00
Fix regression tests structure : using method instead of protocol
This commit is contained in:
parent
c035e76ede
commit
3c45a57130
@ -161,7 +161,7 @@ void perform_unit_test(std::vector<RegressionTest *> *tests,
|
|||||||
goto end;
|
goto end;
|
||||||
}
|
}
|
||||||
|
|
||||||
modsec_assay->processURI(t->uri.c_str(), t->protocol.c_str(),
|
modsec_assay->processURI(t->uri.c_str(), t->method.c_str(),
|
||||||
t->httpVersion.c_str());
|
t->httpVersion.c_str());
|
||||||
|
|
||||||
actions(&r, modsec_assay);
|
actions(&r, modsec_assay);
|
||||||
|
@ -141,8 +141,8 @@ RegressionTest *RegressionTest::from_yajl_node(const yajl_val &node) {
|
|||||||
if (strcmp(key2, "uri") == 0) {
|
if (strcmp(key2, "uri") == 0) {
|
||||||
u->uri = YAJL_GET_STRING(val2);
|
u->uri = YAJL_GET_STRING(val2);
|
||||||
}
|
}
|
||||||
if (strcmp(key2, "protocol") == 0) {
|
if (strcmp(key2, "method") == 0) {
|
||||||
u->protocol = YAJL_GET_STRING(val2);
|
u->method = YAJL_GET_STRING(val2);
|
||||||
}
|
}
|
||||||
if (strcmp(key2, "http_version") == 0) {
|
if (strcmp(key2, "http_version") == 0) {
|
||||||
u->httpVersion = YAJL_GET_NUMBER(val2);
|
u->httpVersion = YAJL_GET_NUMBER(val2);
|
||||||
|
@ -59,7 +59,7 @@ class RegressionTest {
|
|||||||
int clientPort;
|
int clientPort;
|
||||||
int serverPort;
|
int serverPort;
|
||||||
|
|
||||||
std::string protocol;
|
std::string method;
|
||||||
std::string httpVersion;
|
std::string httpVersion;
|
||||||
std::string uri;
|
std::string uri;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -112,7 +112,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -158,7 +158,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -204,7 +204,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -250,7 +250,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -86,7 +86,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -86,7 +86,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -88,7 +88,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -150,7 +150,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -212,7 +212,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -273,7 +273,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -334,7 +334,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -85,7 +85,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -145,7 +145,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -86,7 +86,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -146,7 +146,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -207,7 +207,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -86,7 +86,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -146,7 +146,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -207,7 +207,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -161,7 +161,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -144,7 +144,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -186,7 +186,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -229,7 +229,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -87,7 +87,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -165,7 +165,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -262,7 +262,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -75,7 +75,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1=test¶2=test2",
|
"uri": "\/test.pl?param1=test¶2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
"request": {
|
"request": {
|
||||||
"headers": "",
|
"headers": "",
|
||||||
"body": "",
|
"body": "",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1
|
"http_version": 1.1
|
||||||
},
|
},
|
||||||
"response": {
|
"response": {
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -112,7 +112,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -90,7 +90,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -87,7 +87,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -87,7 +87,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= WHEE ¶m2=test2",
|
"uri": "\/test.pl?param1= WHEE ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -148,7 +148,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value&a=b",
|
"uri":"/?key=value&key=other_value&a=b",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -148,7 +148,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2&a=b\n"
|
"param1=value1¶m2=value2&a=b\n"
|
||||||
]
|
]
|
||||||
@ -194,7 +194,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"a=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC"
|
"a=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC"
|
||||||
]
|
]
|
||||||
@ -240,7 +240,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/?z=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC",
|
"uri":"/?z=%EC%A7%84%20%EB%A7%88%EC%9D%BC%20%EB%A6%AC",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -283,7 +283,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/?z=진 마일 리",
|
"uri":"/?z=진 마일 리",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -59,7 +59,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -102,7 +102,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -148,7 +148,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
"Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -68,7 +68,7 @@
|
|||||||
"AuThOrIzAtIoN": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
"AuThOrIzAtIoN": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
"Authorization": "Basic QWxhZGRpbjpvcGVuIHNlc2FtZQ=="
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -112,7 +112,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -104,7 +104,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -147,7 +147,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -190,7 +190,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -233,7 +233,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -276,7 +276,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -319,7 +319,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -362,7 +362,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -405,7 +405,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -448,7 +448,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -62,7 +62,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -60,7 +60,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?keyI=value&keyII=other_value",
|
"uri":"/?keyI=value&keyII=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type": "application/x-www-form-urlencoded"
|
"Content-Type": "application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body": [
|
"body": [
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -82,7 +82,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -82,7 +82,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -82,7 +82,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -82,7 +82,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -143,7 +143,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -204,7 +204,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -265,7 +265,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
@ -326,7 +326,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -62,7 +62,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three",
|
"uri":"/one/two/three",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -66,7 +66,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key=value",
|
"uri":"/one/two/three?key=value",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
@ -112,7 +112,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/%20/three?key=value",
|
"uri":"/one/two/%20/three?key=value",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"param1=value1¶m2=value2"
|
"param1=value1¶m2=value2"
|
||||||
]
|
]
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -103,7 +103,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -103,7 +103,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/login.php?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
"Accept":"*/*"
|
"Accept":"*/*"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1
|
"http_version":1.1
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
"Expect":"100-continue"
|
"Expect":"100-continue"
|
||||||
},
|
},
|
||||||
"uri":"/",
|
"uri":"/",
|
||||||
"protocol":"POST",
|
"method":"POST",
|
||||||
"body":[
|
"body":[
|
||||||
"--------------------------756b6d74fa1a8ee2",
|
"--------------------------756b6d74fa1a8ee2",
|
||||||
"Content-Disposition: form-data; name=\"name\"",
|
"Content-Disposition: form-data; name=\"name\"",
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -63,7 +63,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
"Cookie":"USER_TOKEN=Yes; a=z; t=b"
|
||||||
},
|
},
|
||||||
"uri":"/?key=value&key=other_value",
|
"uri":"/?key=value&key=other_value",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
"Content-Type":"application/x-www-form-urlencoded"
|
"Content-Type":"application/x-www-form-urlencoded"
|
||||||
},
|
},
|
||||||
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
"uri":"/one/two/three?key1=value1&key2=v%20a%20l%20u%20e%202",
|
||||||
"protocol":"GET"
|
"method":"GET"
|
||||||
},
|
},
|
||||||
"response":{
|
"response":{
|
||||||
"headers":{
|
"headers":{
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -85,7 +85,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
@ -144,7 +144,7 @@
|
|||||||
"Cache-Control": "no-cache"
|
"Cache-Control": "no-cache"
|
||||||
},
|
},
|
||||||
"uri": "\/test.pl?param1= test ¶m2=test2",
|
"uri": "\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol": "GET",
|
"method": "GET",
|
||||||
"http_version": 1.1,
|
"http_version": 1.1,
|
||||||
"body": ""
|
"body": ""
|
||||||
},
|
},
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
@ -85,7 +85,7 @@
|
|||||||
"Cache-Control":"no-cache"
|
"Cache-Control":"no-cache"
|
||||||
},
|
},
|
||||||
"uri":"\/test.pl?param1= test ¶m2=test2",
|
"uri":"\/test.pl?param1= test ¶m2=test2",
|
||||||
"protocol":"GET",
|
"method":"GET",
|
||||||
"http_version":1.1,
|
"http_version":1.1,
|
||||||
"body":""
|
"body":""
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user