Showing
1 changed file
with
19 additions
and
0 deletions
@@ -139,3 +139,22 @@ public static class WxUserInfo { | @@ -139,3 +139,22 @@ public static class WxUserInfo { | ||
139 | } | 139 | } |
140 | ``` | 140 | ``` |
141 | 141 | ||
142 | + | ||
143 | +##### 6. 缺用户是否已经建立过绑定关系,如果建立过,返回之前绑定关系的邀请码 | ||
144 | + | ||
145 | +- URL: {{localhost}}/boxfish-online-card/wxUser/confirm?openId={{openId}} | ||
146 | +- Method: GET | ||
147 | +- Requestparam: `openId` | ||
148 | + | ||
149 | +- ResponseBody: | ||
150 | + | ||
151 | +```java | ||
152 | +public static class Response { | ||
153 | + // status | ||
154 | + private ResponseStatus status; | ||
155 | + private String message; | ||
156 | + | ||
157 | + private Boolean flagUserHasInvitationCode; | ||
158 | + private Long invitationCode; | ||
159 | +} | ||
160 | +``` |
-
Please register or login to post a comment