【API接口】查询隐私号通话记录、通话时长

2024-07-30 19:24:19 举报文章

starttime和endtime为10位时间戳,查询时间跨度不能超过30日。

CURL

curl -i -k --get --include 'http://yinsihao.123yiche.com/module/yinsihao/apicalllog.php?job=calllog&starttime=starttime&endtime=endtime&page=1'  -H 'Authorization:你自己的AppSECRET'

PHP

   $host="http://yinsihao.123yiche.com";
   $path="/module/yinsihao/apicalllog.php";
   $method="GET";
   $appsecret="你自己的AppSecret";
   $headers=array();
   array_push($headers,"Authorization:".$appsecret);
   $querys="job=calllog&starttime=starttime&endtime=endtime&page=1";
   $bodys="";
   $url=$host.$path."?".$querys;
   $curl=curl_init();
   curl_setopt($curl, CURLOPT_CUSTOMREQUEST,$method);
   curl_setopt($curl, CURLOPT_URL,$url);
   curl_setopt($curl, CURLOPT_HTTPHEADER,$headers);
   curl_setopt($curl, CURLOPT_FAILONERROR,false);
   curl_setopt($curl, CURLOPT_RETURNTRANSFER,true);
   curl_setopt($curl, CURLOPT_HEADER,true);
   if(1==strpos("$".$host,"https://"))
    {
       curl_setopt($curl, CURLOPT_SSL_VERIFYPEER,false);
       curl_setopt($curl, CURLOPT_SSL_VERIFYHOST,false);
    }
   var_dump(curl_exec($curl));

JAVA

public static void main(String[] args) {
        String host = "http://yinsihao.123yiche.com";
        String path = "/module/yinsihao/apicalllog.php";
        String method = "GET";
        String appsecret = "你自己的AppSecret";
        Map<String,String>headers = new HashMap<String,String>();
        //最后在header中的格式(中间是英文空格)为Authorization:APPCODE 83359fd73fe94948385f570e3c139105
        headers.put("Authorization",appsecret);
        Map<String,String>querys = new HashMap<String,String>();
        querys.put("job", "calllog");
        querys.put("starttime", "starttime");
        querys.put("endtime", "endtime");
        querys.put("page", "1");
        try {
            /**
            * 重要提示如下:
            * HttpUtils请从
            * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/src/main/java/com/aliyun/api/gateway/demo/util/HttpUtils.java
            * 下载
            *
            * 相应的依赖请参照
            * https://github.com/aliyun/api-gateway-demo-sign-java/blob/master/pom.xml
            */
            HttpResponse response = HttpUtils.doGet(host, path, method, headers, querys);
            System.out.println(response.toString());
            //获取response的body
            //System.out.println(EntityUtils.toString(response.getEntity()));
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

Python

import urllib, urllib2, sys
import ssl
host = 'http://yinsihao.123yiche.com'
path = '/module/yinsihao/apicalllog.php'
method = 'GET'
appsecret = "你自己的AppSecret";
querys = 'job=calllog&starttime=starttime&endtime=endtime&page=1'
bodys = {}
url = host + path + '?' + querys
request = urllib2.Request(url)
request.add_header('Authorization', 'APPCODE ' + appcode)
ctx = ssl.create_default_context()
ctx.check_hostname = False
ctx.verify_mode = ssl.CERT_NONE
response = urllib2.urlopen(request, context=ctx)
content = response.read()
if (content):
print(content)

失败响应

{
    "code": 400, //指返回结果码,并非http状态码
    "msg": "域名校验失败",
}

成功响应

 {
   "code":200,
   "msg":"ok",
   "total_minutes":"34",//总的通话时长(分钟)
   "total_num":"63",//总的通话记录数
   "page":7,//总页数
   "data": [
        {
           "mobphone":"137****6820",
           "xmobphone":"181****2720",
           "sbid":"17250117621504",
           "star_time":"1725011762",
           "end_time":"1725012962",
           "call_type":"0",
           "bmobphone":"137****3897",
           "thsc":"0",
           "thsc_minute":"0",
           "return_url":"https://****/tools/qianzhi/binding/",
           "province":"广东",
           "city":"梅州",
           "sp":"移动",
           "mid":"",
           "appid":"127",
           "push":"0",
           "remarks":"",
           "cpid":"",
           "status":"",
           "noanswerreason":"",
           "fromprovince":"0",
           "fromcity":"0",
           "fromsp":"0"
        },
       ......
    ]
}
如果你认为本文可读性较差,内容错误,或者文章排版错乱,请点击举报文章按钮,我们会立即处理!