|
@@ -71,13 +71,9 @@ public class KuaishouController {
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "根据账户获取视频素材-账户下全部视频素材", notes = "根据账户获取视频素材-账户下全部视频素材")
|
|
|
- @PostMapping(value = "/getKuaishouVideoByAccountId")
|
|
|
- public Map<String, String> getKuaishouVideoByAccountId(@RequestBody JSONObject jsonObject) {
|
|
|
- Long accountId = jsonObject.getLong("accountId");
|
|
|
- JSONArray dataList = jsonObject.getJSONArray("photoIds");
|
|
|
- List<String> materialIds = Check.isNull(dataList) ? null : JSONArray.parseObject(dataList.toJSONString(), List.class);
|
|
|
- String token = tokenService.getByAccountId(accountId);
|
|
|
- return videoListService.getKuaishouVideoByAccountId(accountId, token, materialIds, 1);
|
|
|
+ @GetMapping(value = "/getKuaishouVideoByAccountId")
|
|
|
+ public void getKuaishouVideoByAccountId() {
|
|
|
+ adUnitReportService.getAgentReport();
|
|
|
}
|
|
|
|
|
|
|