|
@@ -42,8 +42,6 @@ public class BytedanceFileVideoGetServiceImpl implements IBytedanceFileVideoGetS
|
|
|
JSONObject param = new JSONObject();
|
|
|
|
|
|
param.put("advertiser_id", oauthToken.getAccountId());
|
|
|
- List<Long> materialIds = new ArrayList<>();
|
|
|
- materialIds.add(7296782053222498341l);
|
|
|
param.put("page", page);
|
|
|
param.put("page_size", pageSize);
|
|
|
JSONObject param2 = new JSONObject();
|
|
@@ -53,7 +51,6 @@ public class BytedanceFileVideoGetServiceImpl implements IBytedanceFileVideoGetS
|
|
|
if (!Check.isNull(endDate)){
|
|
|
param2.put("end_time",endDate);
|
|
|
}
|
|
|
- param2.put("material_ids",materialIds);
|
|
|
param.put("filtering",param2);
|
|
|
JSONObject resultObject = HttpUtils.bytedanceGetRequest(oauthToken.getAccessToken(), url, param);
|
|
|
|