Help Center>
IoT>
API Reference>
AgentLite API Reference (Java)>
APIs>
Access of Directly Connected Devices>
Binding Configuration
Updated at: 2022-02-24 GMT+08:00
Binding Configuration
API Function
This API is used to configure the IP address and port number of the IoT platform before binding a device.
API Description
1 | public static boolean setConfig(int key, String value);
|
Class
BindConfig
Parameter Description
Parameter |
Mandatory or Optional |
Type |
Description |
---|---|---|---|
key |
Mandatory |
int |
Specifies the configuration items for device binding.
|
value |
Mandatory |
String |
Specifies the values of the configuration items.
|
Return Value
Return Value |
Description |
true |
Success |
false |
Failure |
Example
1 2 3 | //Call this API to configure the IP address and port number of the IoT platform for device binding.
BindConfig.setConfig(BindConfig.BIND_CONFIG_ADDR, "127.0.0.1");
BindConfig.setConfig(BindConfig.BIND_CONFIG_PORT, "8943");
|
Parent topic: Access of Directly Connected Devices
