我想使用thingworx选择两个属性,我可以使用此请求选择一个属性(名字):
https://example.com/Thingworx/Things/navigation/Properties/firstname?appKey=xxx
现在我想选择名字和姓氏(两者在同一个用例中:导航)
谢谢
答案 0 :(得分:1)
您应该查看服务而不是属性,例如Service“GetNamedPropertyValues”或“GetNamedProperties”,并将参数传递给要恢复的属性值列表
答案 1 :(得分:0)
您还可以参考
上的ThingWorx REST API备忘单https://community.ptc.com/t5/ThingWorx-Developers/ThingWorx-REST-API-Cheat-Sheet/td-p/532533
基本上,您可以将GET请求发送到
https://<host>:<port>/Thingworx/Things/<thingName>/Properties/*?appKey=<appKey>
获取与该东西相关的所有属性。您还可以使用PUT请求更新多个属性。