更新时间:2022-02-24 GMT+08:00

绑定配置

接口功能

在设备绑定前配置平台的地址和端口。

接口描述

1
public static boolean setConfig(int key, String value);

接口所属类

BindConfig

参数说明

字段

必选/可选

类型

描述

key

必选

int

设备绑定的配置项。

  • 平台IP:BindConfig.BIND_CONFIG_ADDR。
  • 平台端口:BindConfig.BIND_CONFIG_PORT。

value

必选

String

设置的值。

  • 平台IP:Agent Lite对接平台地址。
  • 平台端口:8943。

接口返回值

返回值

描述

true

成功。

false

失败。

返回结果

示例

1
2
BindConfig.setConfig(BindConfig.BIND_CONFIG_ADDR, 127.0.0.1); 
BindConfig.setConfig(BindConfig.BIND_CONFIG_PORT, 8943);