`child-resource-references` 响应的正确格式是什么?
What is the correct format for `child-resource-references` responses?
TS-0004 Table 7.5.2-2 声明 R/6
(检索子资源引用)调用 (?fu=1&rcn=6
) 应该 return m2m:resourceRefList
。这个对吗?对于此查询,我至少看到了两个开源实现 return m2m:URIList
。
是否有列出的示例显示更完整的查询参数组合响应列表?
你是对的。 fu=1(发现请求)和 rcn=6 应该 return a m2m:resourceRefList。如:
{
"m2m:ch": [
{
"nm": "aResource",
"typ": 99,
"val": "cse-in/aResource"
},
{
"nm": "anotherResource",
"typ": 99,
"val": "cse-in/anotherResource"
}
]
}
开发人员指南中有几个示例:https://www.onem2m.org/developer-guides
TS-0004 Table 7.5.2-2 声明 R/6
(检索子资源引用)调用 (?fu=1&rcn=6
) 应该 return m2m:resourceRefList
。这个对吗?对于此查询,我至少看到了两个开源实现 return m2m:URIList
。
是否有列出的示例显示更完整的查询参数组合响应列表?
你是对的。 fu=1(发现请求)和 rcn=6 应该 return a m2m:resourceRefList。如:
{
"m2m:ch": [
{
"nm": "aResource",
"typ": 99,
"val": "cse-in/aResource"
},
{
"nm": "anotherResource",
"typ": 99,
"val": "cse-in/anotherResource"
}
]
}
开发人员指南中有几个示例:https://www.onem2m.org/developer-guides