yumeng 5 years ago
parent
commit
137759b5c4

+ 3 - 0
module-kuaishou/src/main/java/cn/com/ctop/kuaishou/modules/batch/service/impl/KuaishouInterfaceServiceImpl.java

@@ -213,6 +213,7 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
     @Override
     public void getVideoList2(CtopOauthToken token, Date startDate, Date endDate, Integer page) {
         try {
+            log.info("快手视频数据获取,accountId:{}", token.getAccountId());
             String url = PropertiesUtils.getConfig("kuaishou_api_url") + KuaishouInterfaceConstant.VIDEO_LIST;
             Map<String, String> headers = new HashMap<>();
             headers.put("Content-Type", "application/json");
@@ -1703,6 +1704,7 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
     @Override
     public void getCreativeList2(CtopOauthToken token, Date startDate, Date endDate, Integer page) {
         try {
+            log.info("快手创意数据获取,accountId:{}", token.getAccountId());
             String url = PropertiesUtils.getConfig("kuaishou_api_url") + KuaishouInterfaceConstant.CREATIVE_LIST;
             Map<String, String> headers = new HashMap<>();
             headers.put("Content-Type", " application/json");
@@ -3077,6 +3079,7 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
     @Override
     public void getImageList2(CtopOauthToken token, Date startDate, Date endDate, Integer page) {
         try {
+            log.info("快手图片数据获取,accountId:{}", token.getAccountId());
             String url = PropertiesUtils.getConfig("kuaishou_api_url") + KuaishouInterfaceConstant.IMAGE_LIST;
             Map<String, String> headers = new HashMap<String, String>();
             headers.put("Content-Type", " application/json");