1

ここにチュートリアルが書かれています:

次の API 呼び出しは、ThingWorxTrainingMaintenanceBlog と呼ばれるモノに関連付けられているサービス GetBlogEntriesWithComments を実行します。 http://localhost/Thingworx/Things/ThingWorxTrainingMaintenanceBlog/Services/GetBlogEntriesWithComments

この例では、 Thing CarAを作成し、デフォルトを呼び出したいのですserviceが、405 エラー コード「実装されていません」が表示されます

http://localhost:8080/Thingworx/Things/CarA/Services/GetProperties

私が間違っていることはありますか?

4

1 に答える 1

1

POSTリクエストを使用してください、おい:

curl -v --basic --user name:pass -X POST --header "Content-Type: application/json" http://localhost:8080/Thingworx/Things/CarA/Services/GetProperties?Accept=application/json
于 2016-04-15T12:45:30.263 に答える