Showing
1 changed file
with
17 additions
and
7 deletions
@@ -70,7 +70,7 @@ public static class Response { | @@ -70,7 +70,7 @@ public static class Response { | ||
70 | ##### 3. 微信用户获取全部的教材版本、年级信息 | 70 | ##### 3. 微信用户获取全部的教材版本、年级信息 |
71 | 71 | ||
72 | - URL: {{localhost}}/boxfish-online-card/textbook/version/getTextbookGrade | 72 | - URL: {{localhost}}/boxfish-online-card/textbook/version/getTextbookGrade |
73 | -- Method: GET | 73 | +- Method: POST |
74 | - RequestBody: `json字符串` | 74 | - RequestBody: `json字符串` |
75 | 75 | ||
76 | 76 | ||
@@ -107,9 +107,14 @@ public static class Response { | @@ -107,9 +107,14 @@ public static class Response { | ||
107 | 107 | ||
108 | ##### 5. 查询已经领取的教材信息、邀请的用户信息 | 108 | ##### 5. 查询已经领取的教材信息、邀请的用户信息 |
109 | 109 | ||
110 | -- URL: {{localhost}}/boxfish-online-card/textbook/obtain/getObtainTextbook?openId=${{openId}} | 110 | +- URL: {{localhost}}/boxfish-online-card/textbook/obtain/getObtainTextbook |
111 | -- Method: GET | 111 | +- Method: POST |
112 | -- Requestparam: `openId` | 112 | +- RequestBody: |
113 | +```json | ||
114 | +{ | ||
115 | + "openId": "wx_user_openId" | ||
116 | +} | ||
117 | +``` | ||
113 | 118 | ||
114 | - ResponseBody: | 119 | - ResponseBody: |
115 | 120 | ||
@@ -145,9 +150,14 @@ public static class WxUserInfo { | @@ -145,9 +150,14 @@ public static class WxUserInfo { | ||
145 | 150 | ||
146 | ##### 6. 缺用户是否已经建立过绑定关系,如果建立过,返回之前绑定关系的邀请码 | 151 | ##### 6. 缺用户是否已经建立过绑定关系,如果建立过,返回之前绑定关系的邀请码 |
147 | 152 | ||
148 | -- URL: {{localhost}}/boxfish-online-card/wxUser/confirm?openId={{openId}} | 153 | +- URL: {{localhost}}/boxfish-online-card/wxUser/confirm |
149 | -- Method: GET | 154 | +- Method: POST |
150 | -- Requestparam: `openId` | 155 | +- RequestBody: |
156 | +```json | ||
157 | +{ | ||
158 | + "openId": "wx_user_openId" | ||
159 | +} | ||
160 | +``` | ||
151 | 161 | ||
152 | - ResponseBody: | 162 | - ResponseBody: |
153 | 163 |
-
Please register or login to post a comment