设备未向LWM2M代理发送数据

时间:2018-09-24 11:45:02

标签: iot fiware fiware-orion

LWM2M设备向IOT代理发送数据时遇到问题。设备已成功连接到服务器。

但是,似乎该设备没有在没有帮助提示的情况下向IOT代理发送数据,发送了以下命令: *

curl --request POST \
   --header 'Content-Type: text/plain' \
   --header 'Fiware-Service: workshop' \
   --header 'Fiware-ServicePath: /' \
   --header 'X-Auth-Token: NULL' \
   --data 't|30' \
   -v \
     'http://localhost:4041/iot/d?k=workshop-devices&i=robot1'

*

返回消息: *

* About to connect() to localhost port 4041 (#0)
*   Trying 127.0.0.1...
* Connected to localhost (127.0.0.1) port 4041 (#0)
> POST /iot/d?k=workshop-devices&i=robot1 HTTP/1.1
> User-Agent: curl/7.29.0
> Host: localhost:4041
> Accept: */*
> Content-Type: text/plain
> Fiware-Service: workshop
> Fiware-ServicePath: /
> X-Auth-Token: NULL
> Content-Length: 4
> 
* upload completely sent off: 4 out of 4 bytes
< HTTP/1.1 404 Not Found
< X-Powered-By: Express
< Fiware-Correlator: 32da2092-8032-427a-86f2-19ae81a1ab47
< Content-Security-Policy: default-src 'self'
< X-Content-Type-Options: nosniff
< Content-Type: text/html; charset=utf-8
< Content-Length: 145
< Date: Mon, 24 Sep 2018 10:30:25 GMT
< Connection: keep-alive
<
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Cannot POST /iot/d</pre>
</body>
</html>
* Connection #0 to host localhost left intact

不确定是否有人了解这里的情况。

1 个答案:

答案 0 :(得分:0)

您是否遵循https://github.com/telefonicaid/lightweightm2m-iotagent/blob/master/docs/deviceProvisioning.md的步骤?

我之所以这样问,是因为使用LWM2M不可能使用curl命令从设备发送观测值。为此,您需要使用LWM2M客户端。