我尝试向我的 Orion Context Broker 实例发送订阅。我正在发送这个 JSON:
{
"duration": "P1M",
"reference": "http://130.206.127.23:1026/ngsi10/notifyContext",
"notifyConditions": [
{
"condValues": [
"PT10s"
],
"type": "ONTIMEINTERVAL"
}
],
"entities": [
{
"id": "1.0",
"type": "Capsule",
"isPattern": "false"
}
],
"attributes": [
"temperature"
]
}
我收到下一条消息:
<subscribeContextResponse>
<subscribeError>
<errorCode>
<code>400</code>
<reasonPhrase>Bad Request</reasonPhrase>
<details>JSON Parse Error: <unspecified file>(1): invalid escape sequence</details>
</errorCode>
</subscribeError>
</subscribeContextResponse>
我将它使用的所有属性都放在了文档中。但在网络研讨会Orion Context Broker Webinar - Demo 第 2 部分中,我可以看到名为 的其他属性Throttling
,但在文档中没有看到。
我在做什么坏事?
提前致谢。