这里用教程写的是:
下面的API调用执行与名为GetBlogEntriesWithComments的事物相关联的服务ThingWorxTrainingMaintenanceBlog。
http://localhost/Thingworx/Things/ThingWorxTrainingMaintenanceBlog/Services/GetBlogEntriesWithComments
通过这个例子,我创建了Thing CarA,我想调用默认的service,但是我得到了405个错误代码“未实现”
http://localhost:8080/Thingworx/Things/CarA/Services/GetProperties你知道我做错了什么吗?
发布于 2016-04-15 12:45:30
使用POST请求,伙计:
curl -v --basic --user name:pass -X POST --header "Content-Type: application/json" http://localhost:8080/Thingworx/Things/CarA/Services/GetProperties?Accept=application/jsonhttps://stackoverflow.com/questions/36642070
复制相似问题