我和某人一起工作,用ngsi v1我没有任何问题。当我尝试使用它与ngsi v2(通过传统值)我有几个问题。
我以这种方式在v2中创建订阅:
POST /v2/subscriptions HTTP/1.1
Host: <orion-context-broker-host>:<orion-context-broker-port>
Content-Type: application/json
fiware-service: xxxx
fiware-servicepath: /xxxx
{
"description": "Probando legacy",
"subject": {
"entities": [
{
"id": "sthlegacy2",
"type": "NGSIV2"
}
],
"condition": {
"attrs": []
}
},
"notification": {
"attrsFormat":"legacy",
"http": {
"url": "http://<sth-host>:<sth-port>/notify"
},
"attrs": []
},
"expires": "2040-01-01T14:00:00.00Z",
"throttling": 0
}
订阅很好,但是当我尝试更新某个值时,订阅状态变为“失败”,并且它不会创建任何内容。
我很感激解决方案,我必须做错事。