|
@@ -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");
|