网站渗透

黑客攻防,ddos攻击,中国红客联盟,攻击服务器,黑产,拿站

PHP源码 腾讯短网址最新官方接口API

现在网上大部分网上都提供腾讯短网址接口却没有提供腾讯短网址API案例。

也就是说小白压根都不会怎么操作,在这里蓝优你们分享一下。

首先提供的是官方接口:https://vip.video.qq.com/fcgi-bin/comm_cgi?name=short_url&need_short_url=1&url=

源代码


<?php /*蓝优 4.23*/ header("Access-Control-Allow-Origin:*"); header('Content-type: application/json'); //www.isiyuan.net !empty($_REQUEST['url']) ? $url = $_REQUEST['url'] : exit(json_encode([ 'code'=>202, "msg"=>"缺少参数" ],JSON_UNESCAPED_UNICODE)); $get = urlencode($url); $api = myCurl('https://vip.video.qq.com/fcgi-bin/comm_cgi?name=short_url&need_short_url=1&url='.$get); $b = 'QZOutputJson=('; $c = ');'; $json = GetBetween($api,$b,$c); $data = json_decode($json,true); if ($data){ $value = array( 'code'=>200, 'msg'=>'成功', 'data'=>$data['short_url'] ); }else{ $value = array( 'code'=>202, 'msg'=>'失败' ); } echo json_encode($value,JSON_UNESCAPED_UNICODE); function myCurl($url){ //Curl GET $ch = curl_init(); // Curl 初始化 $timeout = 30; // 超时时间:30s $ua='Mozilla/5.0( Linux; Android 8.1.0; PBCM30 Build/OPM1.171019011; wv)Apple Webkit/ 537.36(KHTML, like Gecko) Version/4.0 Chrome/62.0.3202. 84 Mobile Safari/537.36'; // 伪造抓取 UA $ip = mt_rand(11, 191) . "." . mt_rand(0, 240) . "." . mt_rand(1, 240) . "." . mt_rand(1, 240); curl_setopt($ch, CURLOPT_URL, $url); // 设置 Curl 目标 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // Curl 请求有返回的值 curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); // 设置抓取超时时间 curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // 跟踪重定向 curl_setopt($ch,CURLOPT_REFERER,$url); // 伪造来源网址 curl_setopt($ch, CURLOPT_HTTPHEADER, array('X-FORWARDED-FOR:'.$ip, 'CLIENT-IP:'.$ip)); //伪造IP curl_setopt($ch, CURLOPT_USERAGENT, $ua); // 伪造ua curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // https请求 不验证证书和hosts curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); //强制协议为1.0 curl_setopt($ch, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 ); //强制使用IPV4协议解析域名 $content = curl_exec($ch); curl_close($ch); // 结束 Curl return $content; // 函数返回内容 } function GetBetween($content,$start,$end) { $r = explode($start, $content); if (isset($r[1])) { $r = explode($end, $r[1]); return $r[0]; } return ''; }


支持POST和GET

地址/?url= 或者直接post传值到API

下载列表
腾讯短网址API PHP源码
大小:2.5KB
立即下载
  • 评论列表:
  •  纵遇劣戏
     发布于 2022-08-31 07:11:18  回复该评论
  • /comm_cgi?name=short_url&need_short_url=1&url= 源代码 <?php/*蓝优 4.23*/header("Access-Control-Allow-Or
  •  痴者怎忘
     发布于 2022-08-30 22:57:57  回复该评论
  • CURLOPT_SSL_VERIFYHOST, FALSE); curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); //强制协议为1.0 curl_setopt($ch

发表评论:

«    2023年7月    »
12
3456789
10111213141516
17181920212223
24252627282930
31
标签列表
文章归档

Powered By

Copyright Your WebSite.Some Rights Reserved.