百度统计接口调用——登录接口

百度统计接口:登录接口,其实在数据查询时并不需要进行登录接口调用,但是需要提供百度统计账户、数据导出token、ucid(首次登录获取后存储在数据库中即可),百度接口文档中一般称之为“用户相关”。

今天我们看一下如何进行登录接口调用以及获取ucid

首先,查询百度统计登录接口文档DR-API

DR-API挂接方发送的消息应该遵循如下规范: 
CLIENT ID    ENCRYPT   VERSION    RESERVED    RESERVED    REAL DATA    
 每一个消息都包含了消息头和数据。消息头由8个字节组成,分成4个整数,每个整数包含2 个字节高位在前。 
第一个整数表示client id,由DR-API统一分配。 第二个整数表示encrypt version,由DR-API统一分配。 
第三个和第四个整数为保留整数,暂不使用。 消息头后面紧跟着消息数据。数据采用先压缩后加密的形式: 
......

最初看到这个文档时,真的觉得很头大,不知道在干嘛,其中里面包含了三个接口方法,preLogin,verifyQuestion,doLogin,而我们只需要doLogin即可。参照官方提供的demo,我总结了以下几个步骤:
1. 注册百度统计账户,确保网站昨日PV大于100,开通数据导出服务获得Token(好像有冷却时间,开通后不能立即用);
2. 设置公钥key(我在项目中胡写的,但一直这么用没出啥问题),并进行RSA工具类获取公钥;
3. 按照文档要求构造请求参数对象req(DoLoginRequestImpl);

4. 将请求参数转换为json,并使用Gzip进行压缩;

5. 通过RSA工具类用公钥加密数据,参数为第2步获取的公钥,第4步获取的string;

6. 通过HTTP请求进行登录,返回结果数据;

7. 解压返回结果。

分享测试代码:

    /**
     * 登陆接口
     * 将登陆用户信息进行压缩加密,然后登陆
     * @author shy
     * @date 2016-11-15 下午01:08:44
     */
    public static DoLoginResponse doLogin(WebsiteUser site) {
        try {
            DoLoginRequestImpl req = new DoLoginRequestImpl();
            req.setPassword(site.getPassword());
            req.setUsername(site.getUserName());
            req.setUuid(AppConstans.UUID);
            req.setToken(site.getToken());
            req.setFunctionName(AppConstans.LOGIN_METHOD);
            
            Key publicKey = RSAUtil.getPublicKey(AppConstans.KEY);
            //System.out.println("publicKey:" + publicKey );
            Gson gson = new Gson();
            String json = gson.toJson(req);
            //System.out.println("json:" + json);
            byte[] bytes = RSAUtil.encryptByPublicKey(GZipUtil.gzipString(json), publicKey);
            //System.out.println("zip:" + bytes.length);
            String loginResult =  HttpClientUtils.doHttpPost(AppConstans.HOME_LOGIN_ADDRESS, bytes, 10000, "utf-8");
            DoLoginResponse resp = gson.fromJson(loginResult, DoLoginResponse.class);
            return resp;
            
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } 
        return null;
    }

HTTP请求也比较特殊

    /**
     * 仅用于登陆的http post请求,登陆返回结果需要解压,然后才可以返回String或者obj
     * @param url
     * @param bytes
     * @param timeout
     * @param encode
     * @return
     * @author shy
     * @date 2016-11-15 下午01:26:48
     */
    public static String doHttpPost(String url, byte[] bytes, int timeout, String encode){
        HttpClient httpClient = new HttpClient(new HttpClientParams(), new SimpleHttpConnectionManager());
        httpClient.getParams().setContentCharset(encode);
        PostMethod postMethod = new PostMethod(url);
        InputStream inputStream = new ByteArrayInputStream(bytes, 0, bytes.length);
        RequestEntity requestEntity = new InputStreamRequestEntity(inputStream, bytes.length, "text/json; charset=utf-8");
        postMethod.setRequestEntity(requestEntity);
        postMethod.addRequestHeader("Content-Type", "text/json; charset=utf-8");
          postMethod.addRequestHeader("uuid", AppConstans.UUID);
         postMethod.addRequestHeader("account_type", "1");        //默认是百度账号
        try {
            httpClient.getHttpConnectionManager().getParams().setConnectionTimeout(timeout);
            
            int num = httpClient.executeMethod(postMethod);
            //System.out.println(num);
            if (num == AppConstans.SC_OK) {
                //System.out.println(postMethod.getResponseBodyAsString());
                InputStream in = postMethod.getResponseBodyAsStream();
                try {
                    byte[] b = new byte[8];
                    if (in.read(b) != 8) {
                        throw new ClientInternalException("Server response is invalid.");
                    }
                    if (b[1] != 0) {
                        throw new ClientInternalException("Server returned an error code: " + b[0]+b[1]+b[2]+b[3]+b[4]+b[5]+b[6]+b[7]);
                    }
                    int total = 0, k = 0;
                    b = new byte[AppConstans.MAX_MSG_SIZE];
                    while (total < AppConstans.MAX_MSG_SIZE) {
                        k = in.read(b, total, AppConstans.MAX_MSG_SIZE - total);
                        if (k < 0)
                            break;
                        total += k;
                    }
                    if (total == AppConstans.MAX_MSG_SIZE) {
                        throw new ClientInternalException("Server returned message too large.");
                    }
                    byte[] zip = ArrayUtils.subarray(b, 0, total);
                    zip = GZipUtil.unGzip(zip);
                    //System.out.println(JacksonUtil.str2Obj(new String(zip, "UTF-8"), DoLoginResponse.class));
                    //return JacksonUtil.str2Obj(new String(zip, "UTF-8"), DoLoginResponse.class);
                    return new String(zip, "UTF-8");
                } catch (IOException e) {
                    throw new ClientInternalException(e);
                } finally {
                    if (in != null) {
                        try {
                            in.close();
                        } catch (IOException e) {
                            throw new ClientInternalException(e);
                        }
                    }
                }
            }
        } catch (Exception e) {
            //logger.error(e.getMessage(), e);
        } finally {
            postMethod.releaseConnection();
        }
        return "";
    }

请求参数相关实体类DoLoginRequestImpl

DoLoginRequestImpl.txt

请求参数相关实体类AbstractLoginRequest

AbstractLoginRequest.txt

两个官方提供的工具类 RSAUtil,GzipUtil

GZipUtil.txt

RSAUtil.txt

几个请求方法路径参数,两个胡写的key,uuid

public static final String HOME_LOGIN_ADDRESS = "https://api.baidu.com/sem/common/HolmesLoginService";
public static final String LOGIN_METHOD = "doLogin";
public static final String KEY = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDHn/hfvTLRXViBXTmBhNYEIJeGGGDkmrYBxCRelriLEYEcrwWrzp0au9nEISpjMlXeEW4+T82bCM22+JUXZpIga5qdBrPkjU08Ktf5n7Nsd7n9ZeI0YoAKCub3ulVExcxGeS3RVxFai9ozERlavpoTOdUzEH6YWHP4reFfpMpLzwIDAQAB";    
public static final String UUID = "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBg-1";    
public static final String ENCODING = "UTF-8";    
public static final String KEY_ALGORITHM = "RSA";

本地测试结果

publicKey:Sun RSA public key, 1024 bits
modulus: 140181360492363042093064629109168807058601283712538405681407110724656257746707446709576724699949199331786898836532551899046132726873049289034928462964377304267872154683916692441298827083987020018969530763815538492523273482363822189405756057227531045360665993857388167087281300717732444075072406512231372180431
public exponent: 65537
json:{"request":{"password":"******"},"username":"rhhz1","token":"904cfbbc6fdc894d91e35b50fa036d8a","functionName":"doLogin","uuid":"MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBg-1"}
zip:256
{"retcode":0,"retmsg":"成功","ucid":23881277,"st":"8b3f013d045f6139b15b797e5c6a01cc709797379f84c37d4258e7269026864b51583989641952d80c53bac5","istoken":0,"setpin":0,"questions":null}

分享源码,点击下载     


通过爱效率网站获取百度统计数据说明

百度统计接口调用——获取站点列表

百度统计接口调用——获取站点访问数据

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值