lidongdong
2024-04-01 cdca957e4835e359a89fe4c7c9833ab0c78ee4e3
springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/service/impl/UserServiceImpl.java
@@ -3521,14 +3521,14 @@
//        String resultJson = HttpClientUtil.get("https://uu-api.imashuo.com/member/wx/get-acces.s?province=" + uuLoginVO.getProvince() + "&city=" + uuLoginVO.getCity() + "&area=" + uuLoginVO.getArea() + "&appid=" + appId + "&timestamp=" + uuLoginVO.getTimestamp() + "&sign=" + uuLoginVO.getSign() + "&mobile=" + uuLoginVO.getMobile() + "&couponId=" + uuLoginVO.getCouponId(), headerMap, null);
        String resultJson = null;
        try {
            resultJson = HttpClientUtil.httpGet(str  ,headerMap, null);
            resultJson = HttpClientUtil.httpGet(str  ,headerMap,10000 ,null);
        } catch (Exception e) {
            e.printStackTrace();
        }
        JSONObject result = JSON.parseObject(resultJson);
        if (result.get("status").equals(1)) {
            return R.ok(result.get("data")+"   "+resultJson);
        }
//        if (result.get("status").equals(1)) {
//            return R.ok(result.get("data")+"   "+resultJson);
//        }
        return R.fail("信息错误"+"   "+resultJson);
    }