Updated How to Send an HTTP Request Using HTTPClient (markdown)

This commit is contained in:
sinn3r
2014-08-25 12:01:42 -07:00
parent 2ad003cf44
commit af2d6522ab
@@ -115,4 +115,10 @@ Please note: The `normalize_uri` method will always follow these rules:
end
end
end
```
```
### 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.