-1

我正在尝试测试从我的 Arduino 发送 HTTP 请求。我决定使用免费的 RESTful 网络服务 - http://services.groupkt.com。但是出了点问题,我不明白是什么。

获取请求:

GET /country/get/all HTTP/1.1
Host: 45.79.172.152
Connection: keep-alive

串行监视器:

AT+CIPMUX=0


OK

AT+CIPSTART="TCP","45.79.172.152",80

    CONNECT

    OK
    AT+CIPSEND=74


    OK
    > 

    busy s...

    Recv 74 bytes

    SEND OK

    +IPD,493:HTTP/1.1 408 Request Timeout
    Date: Thu, 07 Jun 2018 16:10:59 GMT
    Server: Apache/2.4.25 (Debian)
    Content-Length: 307
    Connection: close
    Content-Type: text/html; charset=iso-8859-1

    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <html><head>
    <title>408 Request Timeout</title>
    </head><body>
    <h1>Request Timeout</h1>
    <p>Server timeout waiting for the HTTP request from the client.</p>
    <hr>
    <address>Apache/2.4.25 (Debian) Server at services.groupkt.com Port 80</address>
    </body></html>
    CLOSED

我做错了什么?

4

1 回答 1

0

HTTP 不像 Telnet。您不能在串行监视器中逐行输入 HTTP 请求。HTTP 请求是由程序发送的,在服务器上接收完整请求的超时时间是一到两秒。写一个草图发送请求。

于 2018-06-08T07:44:33.593 回答