panlili2024
2024-11-14 b1569b789eef12cf5d4252620ca7e7d2d9c8b93a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.hdl.sdk.connect.cloud;
 
/**
 * Created by panlili on 2023/1/30
 * description:
 */
public class HdlCloudApi {
 
    //正式环境
//    public static final String BASE_CHINA_URL = "https://china-gateway.hdlcontrol.com";
 
    //测试环境
    public static final String BASE_CHINA_URL = "https://test-gz.hdlcontrol.com";
 
    //申请设备密钥(根据设备MAC)
    public static final String APPLY_DEVICE_SECRET = "/smart-open/third/device/authByMac";
 
    //检查app是否更新
    public static final String CHECK_APP_VERSION_URL = "/basis-footstone/app/appVersion/check";
 
}