https://open.iot.10086.cn/fuse/http/device/thing/property/post?topic=$sys/3BdbGj2xHT/Raspberry_liuxx/thing/property/post&protocol=http
时间: 2024-01-07 12:23:50 浏览: 206
根据提供的引用内容,你提供的是一个URL链接,该链接是用于在Onenet云平台上通过HTTP协议进行设备属性上报的接口。根据官方文档的说明,你需要在请求的header中添加一个token,并在请求的body中选择raw格式,发送标准的JSON格式数据。成功的返回结果应该是error:0。
如果你想使用该接口进行设备属性上报,你可以按照以下步骤进行操作:
1. 打开postman软件。
2. 在postman中输入URL链接:https://open.iot.10086.cn/fuse/http/device/thing/property/post?topic=$sys/3BdbGj2xHT/Raspberry_liuxx/thing/property/post&protocol=http。
3. 在header中新增一个token,填写你生成的token值。
4. 在body中选择raw格式,并发送标准的JSON格式数据。
5. 检查返回结果,如果返回error:0,则表示上传数据成功。
相关问题
https://open.iot.10086.cn/studio/http//device/thing/property/post?topic=$sys/43561m7T3e/Temperture/thing/property/post&protocol=http
根据提供的引用内容,你提供的链接是一个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中的数据。
阅读全文