0

我是天蓝色物联网的新手。我正在尝试使用它的 rest api 在 azure iot hub 中创建共享访问策略。

 https://management.azure.com/subscriptions/{subscription-Id}/resourceGroups/{group-name}/providers/Microsoft.Devices/IotHubs/{hub-name}?api-version=2016-02-03");

我的java代码是

     String policyold = "{\"tags\" : {}, \"location\": \"East Asia\",\"properties\" : \"authorizationPolicies\" : [{\"name\" : \"policy-namw\", \"primaryKey\" : \"{mykey}\" ,\"secondaryKey\" : \"secondary-key\" ,\"permissions\" :[\"ServiceConnect\" ,\"RegistryRead\" ,\"RegistryWrite\" ,\"DeviceConnect\"]}],\"eventHubEndpoints\" : { \"events\" : {\"messageRetentionInDays\":\"2\"}}}";


    StringEntity input1 = new StringEntity(policyold);
    input1.setContentType("application/json");
    input1.setContentEncoding("UTF8");
    put.setEntity(input1);

    put.setHeader("Authorization", token);
    HttpResponse r2 = httpclient2.execute(put);
    System.out.println(r2.getStatusLine());
    String content2 = EntityUtils.toString(r2.getEntity());
    org.json.JSONObject recvObj2 = new org.json.JSONObject(content2);

但我面临以下错误。

 HTTP/1.1 400 Bad Request  {"error":{"code":"InvalidRequestContent","message":"The request content was invalid and could not be deserialized: 'Error converting value \"authorizationPolicies\" to type 'System.Collections.Generic.Dictionary`2[System.String,Newtonsoft.Json.Linq.JToken]'. Path 'properties', line 1, position 76.'."}}

此外,我正在使用本教程。https://msdn.microsoft.com/en-us/library/mt589015.aspx

谁能帮我解决这个问题?

4

1 回答 1

1

根据Common error codesAzure IoTHub 的官方文档,错误代码 400 表示“请求的主体无效;例如,无法解析,或无法验证对象。”。

我检查了policyold您代码中的字符串值,然后发现 json 字符串缺少所需的元素Sku name& Units。请仔细查看Json请求内容末尾的元素表。

Azure IoTHub 可以拥有多个共享访问策略。

因此,如果在创建新 IoTHub 时创建共享访问策略,请使用 REST API Create a new IoT Hub,否则使用 REST APIUpdate metadata on an existing IoT Hub为现有 IoTHub 添加新策略。

于 2016-04-05T06:56:00.477 回答