推广 热搜: 公司  快速  上海  中国  未来    企业  政策  教师  系统 

免费使用的QQ资料查询接口(等级,活跃,年龄,性别,身份卡),免KEY,免登陆查询

   日期:2024-10-31     作者:xinet    caijiyuan   评论:0    移动:http://dfvalve.xrbh.cn/mobile/news/5562.html
核心提示:接口地址:https://www.xdapi.com/api/qqxinxi/query返回格式:application/json请求方式:HTTPGET请求示例:https://www.xdapi.

接口地址:https://www.xdapi.com/api/qqxinxi/query

免费使用的QQ资料查询接口(等级,活跃,年龄,性别,身份卡),免KEY,免登陆查询


返回格式:application/json


请求方式:HTTPGET


请求示例:https://www.xdapi.com/api/qqxinxi/query?key=你的KEY&qq=查询的QQ

请求HEADER:

名称 值

Content-Type


application/x-www-form-urlencoded;charset:utf-8;

请求参数说明:

名称 必填 类型 示例值 说明

key 是 string 35kj5jnlj53453kl5j43nj5 接口密钥,在控制台->密钥管理查看

qq 是 string 12345 要查询的QQ号码

返回参数说明:

名称 类型 说明

code int 状态码

msg string 状态信息

data string 请求结果数据集

debug string/array 调试数据

exec_time float 执行耗时

user_ip string 客户端IP


附上源代码


<?php


//你申请的key密钥

$API_KEY = '3iPFQfolbmKCl5ZHNDnwE3bMDY';


//API接口地址

$API_URL = 'https://www.xdapi.com/api/qqxinxi/query';


$get_post_data = array(

    //接口参数,一行一个,可按照接口文档-请求参数 的参数填写,或者直接复制开发工具下面的测试代码。

    'key' => $API_KEY,

'参数名' => '参数值',

);


//签名校验的 SK:(在用户控制台https://www.xdapi.com/user/key的秘钥安全设置->签名校验 开启后才会生效,没开启签名校验留空即可。)

$sk = '0c6fc0a9728d2da63893d4bf2069239b';


$resdata = api::send($API_URL, $get_post_data, 'GET', true, $sk);  //发起请求,注意这里要选择接口支持的协议,默认GET,可选POST


//打印请求结果

print($resdata);

///你的业务代码可写在这里处理API返回的数据


class api

{

    public static function send($API_URL, $get_post_data, $type, $ifsign, $sk)

    {

        $get_post_data = http_build_query($get_post_data);

        if ($ifsign) {

            $sign = md5($get_post_data . $sk);

            $res = self::send_curl($API_URL, $type, $get_post_data, $sign);

        } else {

            $res = self::send_curl($API_URL, $type, $get_post_data, null);

        }

        return $res;

    }

    //封装好的CURL请求函数,支持POST|GET

    public static function send_curl($API_URL, $type, $get_post_data, $sign)

    {

        $ch = curl_init();

        if ($type == 'POST') {

            curl_setopt($ch, CURLOPT_URL, $API_URL);

            curl_setopt($ch, CURLOPT_POST, true);

            curl_setopt($ch, CURLOPT_POSTFIELDS, $get_post_data);

        } elseif ($type == 'GET') {

            curl_setopt($ch, CURLOPT_URL, $API_URL . '?' . $get_post_data);

        }

        if ($sign) {

            curl_setopt($ch, CURLOPT_HTTPHEADER, ['sign:' . $sign]);

        }

        curl_setopt($ch, CURLOPT_REFERER, $API_URL);

        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

        curl_setopt($ch, CURLOPT_TIMEOUT, 10);

        curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);

        curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

        $resdata = curl_exec($ch);

        curl_close($ch);

        return $resdata;

    }

}

本文地址:http://dfvalve.xrbh.cn/news/5562.html    迅博思语资讯 http://dfvalve.xrbh.cn/ , 查看更多
 
标签: 身份卡 查询
 
更多>同类行业资讯
0相关评论

新闻列表
企业新闻
推荐企业新闻
推荐图文
推荐行业资讯
点击排行
网站首页  |  关于我们  |  联系方式  |  使用协议  |  版权隐私  |  网站地图  |  排名推广  |  广告服务  |  积分换礼  |  网站留言  |  RSS订阅  |  违规举报  |  粤ICP备2023022329号