Commit bdb5e03217743b452175dd311a94405e55976fea

Authored by 翁力
2 parents 5cd68b32 82c7123e

Merge remote-tracking branch 'origin/master'

Conflicts:
	04.用户云/2.3 用户信息-获取用户信息.md
04.用户云/1.4 密码注册.md
1   -/*
2   - Title: 1.4 注册
3   - Sort: 14
4   -*/
5   -#### URL: http://api.cnlive.com/open/api/CnliveMobile/json/register?sp_id=xxx&...
  1 +#### URL: https://api.cnlive.com/open/api/CnliveM2/user/register?appId=xxx&...
6 2 -----
7 3 #### 请求方式: POST
8 4 -----
... ...
04.用户云/1.6 密码登录.md
1   -#### URL: http://api.cnlive.com/open/api/CnliveM2/user/loginIn.action?spId=xxx&...
  1 +#### URL: https://api.cnlive.com/open/api/CnliveM2/user/loginIn.action?appId=xxx&...
2 2 -----
3 3 #### 请求方式: POST
4 4 -----
... ...
04.用户云/2.3 获取用户信息.md 0 → 100644
  1 +#### URL: https://api.cnlive.com/open/api/CnliveM2/user/readUserById?appId=xxx&...
  2 +-----
  3 +#### 请求方式: POST
  4 +-----
  5 +#### 返回格式: JSON
  6 +-----
  7 +#### 请求参数说明:
  8 +<table class="table table-bordered table-striped table-condensed">
  9 + <tr>
  10 + <th>参数</th>
  11 + <th>必选</th>
  12 + <th>类型</th>
  13 + <th>说明</th>
  14 + </tr>
  15 + <tr>
  16 + <td>appId</td>
  17 + <td>true</td>
  18 + <td>string</td>
  19 + <td>服务提供商ID</td>
  20 + </tr>
  21 + <tr>
  22 + <td>uid</td>
  23 + <td>true</td>
  24 + <td>string</td>
  25 + <td>用户ID</td>
  26 + </tr>
  27 + <tr>
  28 + <td>srcUid</td>
  29 + <td>true</td>
  30 + <td>string</td>
  31 + <td>被查询用户ID</td>
  32 + </tr>
  33 + <tr>
  34 + <td>clientPlat</td>
  35 + <td>true</td>
  36 + <td>string</td>
  37 + <td>客户端平台[i:IOS客户端,a:Android客户端]</td>
  38 + </tr>
  39 + <tr>
  40 + <td>token</td>
  41 + <td>true</td>
  42 + <td>string</td>
  43 + <td>查询者平台TOKEN</td>
  44 + </tr>
  45 +</table>
  46 +
  47 +-----
  48 +#### 返回格式说明:
  49 +```
  50 +{
  51 + "uid": "122",
  52 + "nickName": "鱼儿",
  53 + "gender": "f",
  54 + "location": "China",
  55 + "faceUrl": "http://www.cnlive.com/selfplatform/upload/face/201462/c3646d4e-5f08-4f0b-9ec0-2ff0d4f393ea.jpg",
  56 +}
  57 +
  58 +
  59 +```
0 60 \ No newline at end of file
... ...