切换风格

默认晚霞 雪山 粉色心情 伦敦 花卉 绿野仙踪 加州 白云 星空 薰衣草 城市 简约黑色 简约米色 龙珠
回复 0

3785

主题

3785

帖子

1万

积分

论坛元老

Rank: 8Rank: 8

积分
12534
扣扣群免IDKEY加群API源码[复制链接]
发表于 2022-5-22 19:52:53 | 显示全部楼层 |阅读模式
  

网上的源码大都失效 经 timi 提醒吾爱一位老哥的源码还可以用
所以简单修改了一下改成了API接口
使用示例请求示例(JSON):https://tenapi.cn/qun?qun=群号
请求示例(直接跳转):https://tenapi.cn/qun?qun=群号&type=301
返回数据(JSON):
{

    "code": 200,

    "data": {

      "uid": 546609030,

      "idkey": "df59c76814fbcf651ee2b3d9449d4976a5671bf89d5a6c36706563cf1c250c94",

      "url": "http://wp.qq.com/wpa/qunwpa?idkey=df59c76814fbcf651ee2b3d9449d4976a5671bf89d5a6c36706563cf1c250c94"

    }

}
复制代码
源代码
<?php

$qqun=$_GET['qun'];

$type =$_GET['type'];

$t=time()*1000;

if ($qqun ==''){

echo "参数不能为空";

}

if ($qqun != null) {

$url="http://wp.qq.com/wpa/g_wpa_get?guin=".$qqun."&amp;t=".$t;

$arr = json_decode($url,true);

$ResArray=json_decode(curl_request($url,'get'),true);

$uid = $ResArray['result']['data'][0]['guin'];

$idkey = $ResArray['result']['data'][0]['key'];

if ($type == 301) {

      $cs='http://wp.qq.com/wpa/qunwpa?idkey='. $idkey .'';

              header("Location:{$cs}");

}

$Json = array(

                    "code" => 200,

                    "data" => array(

                          "uid" => $uid,

                          "idkey" => $idkey,

                          "url" => 'http://wp.qq.com/wpa/qunwpa?idkey='. $idkey .'',

                    )

              );

$Json = json_encode($Json,JSON_PRETTY_PRINT|JSON_UNESCAPED_UNICODE);

echo stripslashes($Json);

return $Json;

}

//参数1:访问的URL,参数2:post数据(不填则为GET),参数3:提交的$cookies,参数4:是否返回$cookies

function curl_request($url,$post='',$cookie='', $returnCookie=0){

              $curl = curl_init();

              curl_setopt($curl, CURLOPT_URL, $url);

              curl_setopt($curl, CURLOPT_USERAGENT, 'Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; Trident/6.0)');

              curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);

              curl_setopt($curl, CURLOPT_AUTOREFERER, 1);

              curl_setopt($curl, CURLOPT_REFERER, "http://XXX");

              if($post) {

                    curl_setopt($curl, CURLOPT_POST, 1);

              }

              if($cookie) {

                    curl_setopt($curl, CURLOPT_COOKIE, $cookie);

              }

              curl_setopt($curl, CURLOPT_HEADER, $returnCookie);

              curl_setopt($curl, CURLOPT_TIMEOUT, 10);

              curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);

              $data = curl_exec($curl);

              if (curl_errno($curl)) {

                    return curl_error($curl);

              }

              curl_close($curl);

              if($returnCookie){

                    list($header, $body) = explode("\r\n\r\n", $data, 2);

                    preg_match_all("/Set\-Cookie[^;]*);/", $header, $matches);

                    $info['cookie']    = substr($matches[1][0], 1);

                    $info['content'] = $body;

                    return $info;

              }else{

                    return $data;

              }

}
复制代码
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

手机版|小黑屋|不懂 ( 粤ICP备14042591号-1 )|网站地图

GMT+8, 2024-11-1 18:40 , Processed in 0.070252 second(s), 27 queries .

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

返回顶部