1

我的 TeaMaster9001 在我的 IoT 网络上运行,它的 IP 地址为172.16.1.10. 每当我在 Python 中发送 GET 请求时3.9.5,我都会得到一个requests.exceptions.HTTPError.

这是我的代码(brew-coffee.py):

import requests

response = requests.get("http://172.16.1.10/brew-coffee")

response.raise_for_status()

print(response.content)

...这是输出:

Traceback (most recent call last):
  File "C:\Users\perzan\scripts\brew-coffee.py", line 5, in <module>
    response.raise_for_status()
  File "C:\Users\perzan\scripts\scripts-env\lib\site-packages\requests\models.py", line 943, in raise_for_status
    raise HTTPError(http_error_msg, response=self)
requests.exceptions.HTTPError: 418 Client Error: I'M A TEAPOT for url: http://172.16.1.10/brew-coffee

到底是怎么回事?TeaMaster9001 不支持冲泡咖啡吗?我的代码有什么问题吗?我想我可能缺少一些依赖项......

4

0 回答 0