栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

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

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

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)));
    }
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/694265.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号