|
@@ -122,12 +122,12 @@ public class RuleKuaiShouPlanServiceImpl extends ServiceImpl<RuleDatePlanKuaisho
|
|
|
String result = HttpUtils.kuaiShouhttpPostRequest("https://ad.e.kuaishou.com/rest/openapi/v1/ad_unit/list", param.toJSONString(), headers);
|
|
|
JSONObject resultJson = JSONObject.parseObject(result);
|
|
|
if (Check.isNull(resultJson)) {
|
|
|
- XxlJobHelper.log("获取广告组接口异常,advertiserId:{}", accountId);
|
|
|
+ XxlJobHelper.log("获取定向信息接口异常,advertiserId:{}", accountId);
|
|
|
return;
|
|
|
}
|
|
|
Integer code = resultJson.getInteger("code");
|
|
|
if (null == code || code != 0) {
|
|
|
- XxlJobHelper.log("获取广告组返回结果异常,advertiserId:{},异常信息:{}", accountId, resultJson);
|
|
|
+ XxlJobHelper.log("获取定向信息返回结果异常,advertiserId:{},异常信息:{}", accountId, resultJson);
|
|
|
return;
|
|
|
}
|
|
|
JSONArray details = resultJson.getJSONObject("data").getJSONArray("details");
|