Does the property also include query parameters as a part of the request line calculations ?
Hi @Venkataraghavan , yes it includes query parameters too .
@Venkataraghavan Http request line usually refers to the first line of the Http Request. For example, consider the below curl command:
curl -v [http://httpbin.org/get?query=test](http://httpbin.org/get?query=test)
The cli would show the following for this command:
* Trying 54.175.222.246...
* Connected to httpbin.org (54.175.222.246) port 80 (#0)
> GET /get?query=test HTTP/1.1
> Host: httpbin.org
> User-Agent: curl/7.43.0
> Accept: */*
>
< HTTP/1.1 200 OK
< Server: nginx
< Date: Tue, 29 Sep 2015 02:52:25 GMT
< Content-Type: application/json
< Content-Length: 220
< Connection: keep-alive
< Access-Control-Allow-Origin: *
< Access-Control-Allow-Credentials: true
<
{
"args": {
"query": "test"
},
"headers": {
"Accept": "*/*",
"Host": "httpbin.org",
"User-Agent": "curl/7.43.0"
},
"origin": "50.204.222.35",
"url": "http://httpbin.org/get?query=test"
}
In this example, the request line would be:
GET /get?query=test HTTP/1.1
Thanks @Maruti Chand