使用服务器REST API

时间:2018-05-02 07:30:20

标签: kaa

我使用kaa rest api来激活我的配置(使用Postman),但我不知道如何填充configurationId的参数内容类型。我试过了

{
"id" : "98593",
"applicationId": "32769",
"schemaId": "65544" ,
"endpointGroupId": "98308"}

但我得到HTTP / 1.1 400错误请求,任何建议将不胜感激。 感谢

1 个答案:

答案 0 :(得分:0)

最后我可以解决这个问题, 您需要将内容类型设置为application / json,POST body只需填写配置ID

curl -v -S -u username:password -X POST --header 'Content-Type: application/json' --header 'Accept: application/json' -d '12423' 'http://localhost:8080/kaaAdmin/rest/api/activateConfiguration' | python -mjson.tool