Is it possible to chain multiple proxies in a single request using cURL?
For example:
start cURL -> proxy1 -> proxy2 -> destination address
Can this be achieved using cURL?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
A proxy is by definition a middle man. Software running and doing work between the client and the server. The client asks the proxy which then it turn asks the server.
“Chained” proxies would then imply that a first proxy would ask a second proxy, but as the client asks the proxy to do its request it cannot be the job of the client to ask the second proxy, but it must be the first proxy’s task.
Alas: sure, if you have a proxy A that you setup to talk to another proxy B, and you tell curl to use proxy A then certainly the chained proxies will be used. I don’t even see what curl could do to NOT work with it…