疯体ios登陆问题处理

master
duhui 2022-07-13 13:37:51 +08:00
parent de301cd83a
commit bf77f6a245
1 changed files with 3 additions and 3 deletions

View File

@ -149,14 +149,14 @@ public class QuickVerifyService3 extends AbstractVerifyService {
LOGGER.info("疯体 Ohayoo 登录验证-->{}",params.getOpenId());
HashMap<String, String> map = new HashMap<>();
map.put("app_id",params.getProductCode());
map.put("token",params.getToken());
map.put("product_code",params.getProductCode());
map.put("uid",params.getOpenId());
map.put("open_id",params.getOpenId());
boolean result = false;
String r = null;
try {
r = HttpUtils.doPost(url, map);
r = HttpUtils.doPost2(url, JSONObject.toJSONString(map));
LOGGER.info("疯体 Ohayoo 请求结果:{}",r);
JSONObject resultJson = JSON.parseObject(r);
int status = resultJson.getIntValue("status");