如何动态创建具有属性的资源?

How to dynamically create ressource with attribute?

上下文

我正在尝试在同一台服务器上动态创建和访问多个 CoAP 资源。 基本上想要的是 get coap://ip/ressource/* 并获取 ressource/1 ressource/n

的所有数据

链接主题

我找到了以下内容 CoAP: Group similar resources under one

"what's left is that you create a /TIME/ resource (the slash at the end does matter) and announce it in .well-known/core as ;if="core.b"."

问题

我不知道如何从客户端创建具有特定属性的资源

使用 libcoap 进行实验

coap-client -m put coap://ip/ressource;if="core.b" 没有 return 错误但未创建属性(使用铜)

这完全取决于服务器。您是在编写服务器(如果是,使用哪个框架?)还是只是尝试让现有服务器(如果是,哪个?)按您喜欢的方式运行?