gpt4 book ai didi

http - 最小 http 服务器回复

转载 作者:行者123 更新时间:2023-12-03 22:45:17 25 4
gpt4 key购买 nike

我正在尝试使用 AVR + ESP8266 构建一个 http 服务器。

我可以通过 telnet 来回发送命令,但现在我想实现一个 Web 界面

作为起点,我尝试建立一个输出“文本”的网站
但是,浏览器会显示一个空白页面。有人可以让我知道将页面解释为 html 的最低要求吗?

远程登录 192.168.2.26 81
正在尝试 192.168.2.26...
连接到 192.168.2.26。
转义字符是“^]”。

获取/HTTP/1.1

AVR回答如下

HTTP/1.1 200 OK
Content-Type: text/html
<!DOCTYPE html>
<html>
<head>
<meta content="text/html; charset=ISO-8859-1" http-equiv="content-type">
<title>Zeitschaltuhr</title></head>
<body>
Text
</body></html>
Connection closed by foreign host.

最佳答案

最小的 http 答案:

HTTP/1.1 404 
Content-Length: 0

最小文本答案:
HTTP/1.1 200 OK
Content-Length: 13
Content-Type: text/plain; charset=utf-8

Hello World!

它对您不起作用的原因是您忘记了 内容长度:标题

关于http - 最小 http 服务器回复,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33784127/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com