保存热点数据

调试

您可以在OpenAPI Explorer中直接运行该接口,免去您计算签名的困扰。运行成功后,OpenAPI Explorer可以自动生成SDK代码示例。

请求参数

名称 类型 是否必选 示例值 描述
Action String SaveHotspotTagList

系统规定参数。取值:SaveHotspotTagList

SceneId String tqwiuwetwet****

场景Id

HotspotListJson String [{}]

热点数据,json字符串数组

HotspotListJson字段为json字符串数组,具体格式参照前端引擎。

返回数据

名称 类型 示例值 描述
RequestId String B28A2ECB-AB29-1E01****

请求ID,与入参requestId对应

Code Long 200

返回码

Success Boolean true

是否请求成功

Message String success

错误消息

示例

请求示例

Config config = new Config();
        config.setAccessKeyId("yourAccessKeyId");
        config.setAccessKeySecret("yourAccessKeySecret");
        config.setEndpoint("lyj.cn-hangzhou.aliyuncs.com");

        Client client = new Client(config);

        SaveHotspotTagListRequest request = new SaveHotspotTagListRequest();
        request.setSceneId("tqwiuwetwet****");
        request.setHotspotListJson("[{}]");

        SaveHotspotTagListResponse response = client.saveHotspotTagList(request);
        if (response.getBody().success){
            // ...
        }

正常返回示例

XML格式

HTTP/1.1 200 OK
Content-Type:application/xml

<SaveHotspotTagListResponse>
    <RequestId>B28A2ECB-AB29-1E01****</RequestId>
    <Code>200</Code>
    <Success>true</Success>
    <Message>success</Message>
</SaveHotspotTagListResponse>

JSON格式

HTTP/1.1 200 OK
Content-Type:application/json

{
  "RequestId" : "B28A2ECB-AB29-1E01****",
  "Code" : 200,
  "Success" : true,
  "Message" : "success"
}

错误码

访问错误中心查看更多错误码。