我正试图用ESP8266中的websocket向服务器发送数据,但握手不起作用。
我正在发送以下AT命令序列:
AT+RST
AT+CWMODE=1
AT+CIPMODE=0
AT+CIPMUX=1
AT+CWJAP="ssid_my_network","password"
AT+CIPSTART=4,"TCP","ip_server",port
AT+CIPSEND=4,data_lenght
此刻,我发送标题:
GET ws:ip_server HTTP/1.1rn
Host: ip_serverrn
Upgrade: websocketrn
Connection: Upgradern
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==rn
Sec-WebSocket-Version: 13rn
但是,我没有收到服务器的响应。我做错了什么?
HTTP标头必须以空行结束。您需要发送另一个rn
。
GET ws:ip_server HTTP/1.1rn
Host: ip_serverrn
Upgrade: websocketrn
Connection: Upgradern
Sec-WebSocket-Key: dGhlIHNhbXBsZSBub25jZQ==rn
Sec-WebSocket-Version: 13rn
rn
我认为你可以尝试使用WiFiClient而不是WebSocket(像这样)
从上面的链接发送http GET请求的一些代码:
// Perform an HTTP GET request to a remote page
bool getPage() {
// Attempt to make a connection to the remote server
if ( !client.connect(http_site, http_port) ) {
return false;
}
// Make an HTTP GET request
client.println("GET /index.html HTTP/1.1");
client.print("Host: ");
client.println(http_site);
client.println("Connection: close");
client.println();
return true;
}
尝试在握手GET请求后删除ws-uri。如果没有路径,请将其设置为"/"。另外,如果您的websocket服务器不是从80开始服务的,您需要在host属性后面的头中表示它。
我们可能会说同行之间可能发生了版本不匹配,但没有答案。所以我们有一个小的隐藏问题,比如代理等。