阅读FIWARE-NGSI v2规范(http://telefonicaid.github.io/fiware-orion/api/v2/latest/)
简化实体表示部分 我无法将值模式测试为recomend。我的测试失败了:
值模式。此模式将实体表示为属性数组 值。遗漏了有关id和type的信息。见下面的例子。 数组中属性的顺序由attrs URI指定 参数(例如,attrs =分支,颜色,引擎)。如果没有使用attrs,那么 订单是任意的。
['Ford','black',78.3]
我在哪里以及如何引用了entityID?
POST /v2/entities/Room1?options=values&attrs=branch,colour,engine
有效载荷:
[ 'Ford', 'black', 78.3 ]
答案:
{
"error": "MethodNotAllowed",
"description": "method not allowed"
}
POST / v2 / entities?options = values
有效载荷:
[ 'Ford', 'black', 78.3 ]
答案:
{
"error": "ParseError",
"description": "Errors found in incoming JSON buffer"
}
版本: GET /版本
{
"orion": {
"version": "1.10.0-next",
"uptime": "0 d, 0 h, 1 m, 34 s",
"git_hash": "0f92803495a8b6c145547e19f35e8f633dec92e0",
"compile_time": "Fri Feb 2 09:45:41 UTC 2018",
"compiled_by": "root",
"compiled_in": "77ff7f334a88",
"release_date": "Fri Feb 2 09:45:41 UTC 2018",
"doc": "https://fiware-orion.readthedocs.org/en/master/"
}
}
答案 0 :(得分:2)
“options = values”是一种表示格式,用于查询数据而不是为了显而易见的原因发布新的实体数据,当您创建新实体时,您必须指定实体ID和实体类型,并且您可以使用值表示格式不......