thingworx select 多个属性
thingworx select multiple properties
我想 select 使用 thingworx 的两个属性,我能够 select 一个 属性(名字)使用此请求:
https://example.com/Thingworx/Things/navigation/Properties/firstname?appKey=xxx
现在我想 select 名字和姓氏(都在同一个用例中:导航)
谢谢
您应该查看服务而不是属性,例如服务 "GetNamedPropertyValues" 或 "GetNamedProperties" 并将要恢复的属性值列表作为参数传递
您还可以参考
上的 ThingWorx REST API 作弊 Sheet
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 请求更新多个属性。
我想 select 使用 thingworx 的两个属性,我能够 select 一个 属性(名字)使用此请求:
https://example.com/Thingworx/Things/navigation/Properties/firstname?appKey=xxx
现在我想 select 名字和姓氏(都在同一个用例中:导航)
谢谢
您应该查看服务而不是属性,例如服务 "GetNamedPropertyValues" 或 "GetNamedProperties" 并将要恢复的属性值列表作为参数传递
您还可以参考
上的 ThingWorx REST API 作弊 Sheethttps://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 请求更新多个属性。