panlili2024
2025-03-19 7c8ce9b9a7d3fc1aaa4a621e86415b25ad10a34f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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_TEST_URL = "https://test-gz.hdlcontrol.com";
 
    //国外环境
    public static final String BASE_BAHRAIN_URL = "https://bahrain-gateway.hdlcontrol.com";
 
    //登陆刷新token
    public static final String LOGIN = "/smart-footstone/member/oauth/login";
 
    //申请设备密钥(根据设备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";
 
    //获取思必驰token
    public static final String GET_SIBICHI_TOKEN = "/smart-footstone/thirdToken/aiSpeechToken";
 
    //验证是否on+是否绑定source
    public static final String IS_BIND_URL = "/home-wisdom/source/screen/home/isBind";
 
    //获取网关列表
    public static final String GET_GATEWAY_LIST = "/home-wisdom/app/gateway/getGatewayList";
 
}