Commit f154b054a93f15a41e4f3743b02cd87f6864d8f2

Authored by 王言钊
2 parents 6a4deee6 91591c39

Merge branch 'dev'

src/main/java/com/cnlive/shenhe/utils/AuditPass.java
@@ -90,6 +90,8 @@ public class AuditPass { @@ -90,6 +90,8 @@ public class AuditPass {
90 } 90 }
91 String URL = callBack + "?platform=" + platformKey + "&token=" + token; 91 String URL = callBack + "?platform=" + platformKey + "&token=" + token;
92 Map<String, String> post = httpUtil.post(URL); 92 Map<String, String> post = httpUtil.post(URL);
  93 + String result = post.get("result");
  94 + logger.info("点播回调result:{}", result);
93 return JSONObject.parseObject(post.get("result")); 95 return JSONObject.parseObject(post.get("result"));
94 } 96 }
95 97