Authored by zhuxj

添加https开关

Showing 1 changed file with 73 additions and 71 deletions
1 -# Yoho API  
2 -  
3 -## 接口名称  
4 -软件初始化配置接口  
5 -  
6 -## URL  
7 -**[http://xxxx/config/user_config](https://xxxx/config/user_config)**  
8 -  
9 -## 支持格式  
10 -JSON  
11 -  
12 -## HTTP请求方式  
13 -POST  
14 -  
15 -## 请求参数  
16 -**参数列表:**  
17 -  
18 -| 字段 | 描述 | 类型 | 示例 |  
19 -|------------|--------|--------|----------------------|  
20 -| app_version| 当前版本号 | string | 3.8.0 |  
21 -| uid | 用户ID | string | 13423331 |  
22 -| client_type | 用户手机系统:Android,IOS | string | Android |  
23 -| screen_size | 屏幕尺寸 | string | 1080x1920 |  
24 -| udid | 设备唯一码 | string | 1d123sadao3 |  
25 -  
26 -**JSON格式:**  
27 -```  
28 -{  
29 - "app_version": "3.8.0",  
30 - "uid":"123123123",  
31 - "client_type":"Android",  
32 - "screen_size":"1080x1920"  
33 -}  
34 -```  
35 -  
36 -## 返回字段说明  
37 -**返回列表:**  
38 -  
39 -| 字段 | 描述 | 类型 | 示例 |  
40 -|------------|--------|--------|----------------------|  
41 -| code| 返回的code, 200, 304等,具体的服务器定义 | int | |  
42 -| message | 信息 | string | |  
43 -| md5 | 当前请求的唯一码 | string | |  
44 -| data | 配置参数数据,参考data,config列表 | object | |  
45 -  
46 -**config列表:**  
47 -  
48 -| 字段 | 描述 | 类型 | 示例 |  
49 -|------------|--------|--------|----------------------|  
50 -| imageformat| "webp", "jpeg", 客户端需要显示的类型 | string | |  
51 -| clearcache | 里面有image(清空图片), data(清空数据缓存), init(初始化), code(本次清除的唯一码) | object | 1:清除 0 :不清除 |  
52 -  
53 -**JSON格式:**  
54 -```  
55 -{  
56 -"code":200,  
57 -"message":"Config Success",  
58 -"md5":"1231231231231",  
59 -"data":{  
60 - "config":{  
61 - "format":"webp",  
62 - "clearcache":{  
63 - "image":1,  
64 - "data":1,  
65 - "init":1,  
66 - "code":159872617889  
67 - }  
68 - }  
69 - }  
70 -}  
71 -``` 1 +# Yoho API
  2 +
  3 +## 接口名称
  4 +软件初始化配置接口
  5 +
  6 +## URL
  7 +**[http://xxxx/config/user_config](https://xxxx/config/user_config)**
  8 +
  9 +## 支持格式
  10 +JSON
  11 +
  12 +## HTTP请求方式
  13 +POST
  14 +
  15 +## 请求参数
  16 +**参数列表:**
  17 +
  18 +| 字段 | 描述 | 类型 | 示例 |
  19 +|------------|--------|--------|----------------------|
  20 +| app_version| 当前版本号 | string | 3.8.0 |
  21 +| uid | 用户ID | string | 13423331 |
  22 +| client_type | 用户手机系统:Android,IOS | string | Android |
  23 +| screen_size | 屏幕尺寸 | string | 1080x1920 |
  24 +| udid | 设备唯一码 | string | 1d123sadao3 |
  25 +
  26 +**JSON格式:**
  27 +```
  28 +{
  29 + "app_version": "3.8.0",
  30 + "uid":"123123123",
  31 + "client_type":"Android",
  32 + "screen_size":"1080x1920"
  33 +}
  34 +```
  35 +
  36 +## 返回字段说明
  37 +**返回列表:**
  38 +
  39 +| 字段 | 描述 | 类型 | 示例 |
  40 +|------------|--------|--------|----------------------|
  41 +| code| 返回的code, 200, 304等,具体的服务器定义 | int | |
  42 +| message | 信息 | string | |
  43 +| md5 | 当前请求的唯一码 | string | |
  44 +| data | 配置参数数据,参考data,config列表 | object | |
  45 +
  46 +**config列表:**
  47 +
  48 +| 字段 | 描述 | 类型 | 示例 |
  49 +|------------|--------|--------|----------------------|
  50 +| format| "webp", "jpeg", 客户端需要显示的类型 | string | |
  51 +| clearcache | 里面有image(清空图片), data(清空数据缓存), init(初始化), code(本次清除的唯一码) | object | 1:清除 0 :不清除 |
  52 +| https | 开启或者关闭https| string | 1:开启 0 :关闭 |
  53 +
  54 +**JSON格式:**
  55 +```
  56 +{
  57 +"code":200,
  58 +"message":"Config Success",
  59 +"md5":"1231231231231",
  60 +"data":{
  61 + "config":{
  62 + "format":"webp",
  63 + "https":"1",
  64 + "clearcache":{
  65 + "image":1,
  66 + "data":1,
  67 + "init":1,
  68 + "code":159872617889
  69 + }
  70 + }
  71 + }
  72 +}
  73 +```