JAVA----获取百度推广账号报告

JAVA----获取百度推广账号报告,第1张

JAVA----获取百度推广账号报告

百度登录地址:http://dev2.baidu.com/newdev2/dist/

申请开通API 权限, 权限开通后,签署线上协议,获得权限代码 token

根据token, 账号信息就可以拉取相关报告

获取百度推广账号报告有两种模式 SEM/搜索账户报告
	public static final String SEM_URL = "https://api.baidu.com/json/sms/service/ReportService/getRealTimeData";

    public AjaxResult getSemReport(BaiduReportEntity reportEntity) throws Exception {
        String method = "[百度推广-获取 SEM/搜索账户报告] ";
        log.info(method + "--------------------start");
        reportEntity.setReportType(2);

        if (StringUtils.isEmpty(reportEntity.getStartDate()) || StringUtils.isEmpty(reportEntity.getEndDate())) {
            log.info(method + "未指定开始时间");
            return AjaxResult.error("未指定开始时间");
        }

        log.info(method + "账户:{},时间范围:{} ~ {}", reportEntity.getUsername(), reportEntity.getStartDate(), reportEntity.getEndDate());
        return baseBaidu.getResult(OkHttpUtils.getInstance().postJson(SEM_URL, getParams(reportEntity)));
    }
获取信息流账户报告
	public static final String FLOW_URL = "https://api.baidu.com/json/feed/v1/ReportFeedService/getRealTimeFeedData";
	    
    public AjaxResult getFlowReport(BaiduReportEntity reportEntity) throws Exception {
        String method = "[百度推广-获取信息流账户报告] ";
        log.info(method + "--------------------start");
        reportEntity.setReportType(700);

        if (StringUtils.isEmpty(reportEntity.getStartDate()) || StringUtils.isEmpty(reportEntity.getEndDate())) {
            log.info(method + "未指定开始时间");
            return AjaxResult.error("未指定开始时间");
        }

        log.info(method + "账户:{},时间范围:{} ~ {}", reportEntity.getUsername(), reportEntity.getStartDate(), reportEntity.getEndDate());
        return baseBaidu.getResult(OkHttpUtils.getInstance().postJson(FLOW_URL, getParams(reportEntity)));
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5694728.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存