Answers for "how to use proxy curl"

2

curl with proxy

# curl [--proxy] OR [-x] [proxy-url] [target-url]

curl --proxy "http://user:[email protected]:1234" "http://httpbin.org/ip"
curl -x "http://user:[email protected]:1234" "http://httpbin.org/ip"
Posted by: Guest on December-14-2021

Browse Popular Code Answers by Language