/ Published in: Other
Expand |
Embed | Plain Text
Curl Examples # with basic auth curl -v -X GET --basic -u username:password "http://www.domainname.com" # with cookie support # -b and -c allow cookies to be written to a file and then presented on next request # -L allows for following, ie if a 302 is sent, this makes another request to address in the redirect curl -v -X GET --basic -u username:password "http://www.domainname.com" -b cookies.txt -c cookies.txt -L
You need to login to post a comment.
