|
@@ -200,9 +200,8 @@ public class KuaishouInterfaceServiceImpl implements IKuaishouInterfaceService {
|
|
param.put("page_size", 500);
|
|
param.put("page_size", 500);
|
|
param.put("page", page);
|
|
param.put("page", page);
|
|
if (!Check.isNull(startDate) && !Check.isNull(endDate)) {
|
|
if (!Check.isNull(startDate) && !Check.isNull(endDate)) {
|
|
- //TODO
|
|
|
|
- param.put("start_date", "2021-01-01");
|
|
|
|
- param.put("end_date", "2021-07-01");
|
|
|
|
|
|
+ param.put("start_date", startDate);
|
|
|
|
+ param.put("end_date", endDate);
|
|
}
|
|
}
|
|
String result = HttpUtils.httpPostRequest(url, param, headers);
|
|
String result = HttpUtils.httpPostRequest(url, param, headers);
|
|
JSONObject resultJson = JSONObject.parseObject(result);
|
|
JSONObject resultJson = JSONObject.parseObject(result);
|