https://open.iot.10086.cn/studio/http//device/thing/property/post?topic=$sys/43561m7T3e/Temperture/thing/property/post&protocol=http
时间: 2024-01-07 15:23:53 浏览: 209
根据提供的引用内容,你提供的链接是一个HTTP接入API的URL。根据官方文档,你需要在header中添加一个token,并在body中选择raw,JSON的数据格式,发送标准的JSON格式数据。成功的话,会返回error:0。
以下是一个示例的HTTP请求的Python代码:
```python
import requests
url = "https://open.iot.10086.cn/studio/http/device/thing/property/post?topic=$sys/43561m7T3e/Temperture/thing/property/post&protocol=http"
headers = {
"token": "your_token_value"
}
data = {
"temperature": 25,
"humidity": 50
}
response = requests.post(url, headers=headers, json=data)
if response.status_code == 200:
result = response.json()
if result["error"] == 0:
print("数据上传成功")
else:
print("数据上传失败")
else:
print("请求失败")
```
请注意,你需要将"your_token_value"替换为你生成的token值,并根据你的需求修改data中的数据。
阅读全文