如果要通过代理连接,请使用代理服务器名称作为要连接的地址,并将服务器地址包含在GET请求中:
// if you get a connection, report back via serial: if (client.connect("www.proxy.com", 8080)) { // This is connecting to the proxy Serial.println("connected"); // Make a HTTP request through proxy: client.println("GET http://www.actualserver.com/search?q=arduino HTTP/1.0"); client.println();
原来的答案是 这里 。
该 Client class既不支持SOCKS也不支持HTTP代理。你必须修改代码 Ethernet.h 你自己。
Client
Ethernet.h