This commit is contained in:
qitz
2023-10-15 10:17:07 +08:00
8 changed files with 79 additions and 36 deletions
@@ -43,8 +43,8 @@ public class WxAppletNotifyUtils {
body.putOpt("expire_interval",30);
String post = HttpUtil.post(url,body.toJSONString(2));
JSONObject result = JSONUtil.parseObj(post);
if(result!=null){
result.getStr("openlink");
if(result!=null && result.containsKey("openlink")){
return result.getStr("openlink");
}
return null;
}