From af2d6522abb4031926029e64cf7c58d2c856d84c Mon Sep 17 00:00:00 2001 From: sinn3r Date: Mon, 25 Aug 2014 12:01:42 -0700 Subject: [PATCH] Updated How to Send an HTTP Request Using HTTPClient (markdown) --- How-to-Send-an-HTTP-Request-Using-HTTPClient.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/How-to-Send-an-HTTP-Request-Using-HTTPClient.md b/How-to-Send-an-HTTP-Request-Using-HTTPClient.md index 48b82db239..e30b0e0115 100644 --- a/How-to-Send-an-HTTP-Request-Using-HTTPClient.md +++ b/How-to-Send-an-HTTP-Request-Using-HTTPClient.md @@ -115,4 +115,10 @@ Please note: The `normalize_uri` method will always follow these rules: end end end -``` \ No newline at end of file +``` + +### Common question(s): + +1 - Can I use ```vars_get``` and ```vars_post``` together? + +Yes. When you supply a hash to ```vars_get```, basically it means "put all this data in the query string". When you supply a hash to ```vars_post```, it means "put all this data in the body." All of them will be in the same request. \ No newline at end of file