xiaoyuanling 发表于 2019-4-29 11:40

抖音无水印解析整站源码打包带api

本帖最后由 xiaoyuanling 于 2019-4-29 12:26 编辑



API有小问题 会修复的 评论区回复修复方法


https://static.52pojie.cn/static/image/hrline/5.gifhttps://static.52pojie.cn/static/image/hrline/5.gifhttps://static.52pojie.cn/static/image/hrline/5.gifhttps://static.52pojie.cn/static/image/hrline/5.gif



源码下载地址https://www.lanzouj.com/i3yfl3g

xiaoyuanling 发表于 2019-4-29 12:18

本帖最后由 xiaoyuanling 于 2019-4-29 12:22 编辑

主要是 抖音更新了 请求PC端的UA 不行 必须在请求 一次手机端的 UA才能播放。
下面的源码是已经修好的,但是不能直接用。
会PHP的利用下面的代码对API进行修复

<?php
if (!empty($_GET['url'])) {
$url = $_GET['url'];
$str = GET($url, 1);
preg_match("/video_id=(.*?)&/i", $str, $arr);
if (count($arr) >= 1) {
$str = GET("https://aweme.snssdk.com/aweme/v1/play/?video_id=".$arr."&line=0", 0);
preg_match('#<a href="(.*?)">#', $str, $arr2);
if (count($arr2) >= 1) {
$arr3 = explode("//", $arr2);//把http替换成https就能完美解决
if (!empty($arr3)) {
//header("content-type:video/mp4");
//header("Location: "."https://".$arr3);
if (!empty($_GET['way']) && $_GET['way'] == "txt") { //纯文本输出
exit("https://".$arr3);
}
elseif(!empty($_GET['way']) && $_GET['way'] == "json") { //json文本输出
$aray = ['code' =>200, 'msg' =>'success', 'url' =>"https://".$arr3];
exit(json_encode($aray, false));
} else { //跳转到改地址播放
header("Location: "."https://".$arr3);
}}}}
} else {
echo "参数呢???????????????";
}
function Get($url, $foll = 0) {
//初始化
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url); //访问的url
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); //完全静默
curl_setopt($ch, CURLOPT_HEADER, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); //忽略https
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false); //忽略https
curl_setopt($ch, CURLOPT_HTTPHEADER, ["user-agent: Mozilla/5.0 (iPhone; CPU iPhone OS 6_0 like Mac OS X) AppleWebKit/536.26 (KHTML, like Gecko) Version/6.0 Mobile/10A5376e Safari/8536.25"]); //UA
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $foll); //默认为$foll=0
$output = curl_exec($ch); //获取内容
curl_close($ch); //关闭
return $output; //返回
}
?>

zhuixc 发表于 2019-5-19 23:44

xiaoyuanling 发表于 2019-4-29 12:31
看置顶回复 我写了解决代码 但是不能直接用

楼主你看看,可以用不。
https://pan.baidu.com/s/16HRi37WemsnLR9O9DZcpQA 提取码:0wmw 复制这段内容后打开百度网盘手机App,操作更方便哦

爱生活爱VIVI 发表于 2019-4-29 11:47

卡卡113 发表于 2019-4-29 11:57

谢谢分享

xiaoyuanling 发表于 2019-4-29 12:06

爱生活爱VIVI 发表于 2019-4-29 11:47
这个源码的接口我记得去年就失效了

刚刚失效

boy7928 发表于 2019-4-29 12:08

太真实了刚刚失效。。。

ZHEyang 发表于 2019-4-29 12:24

刚刚失效 hhh nice

xiaoyuanling 发表于 2019-4-29 12:27

ZHEyang 发表于 2019-4-29 12:24
刚刚失效 hhh nice

看置顶回复 我写了解决代码 但是不能直接用

xiaoyuanling 发表于 2019-4-29 12:27

boy7928 发表于 2019-4-29 12:08
太真实了刚刚失效。。。

看置顶回复 我写了解决代码 但是不能直接用

xiaoyuanling 发表于 2019-4-29 12:30

xiaoyuanling 发表于 2019-4-29 12:18
主要是 抖音更新了 请求PC端的UA 不行 必须在请求 一次手机端的 UA才能播放。
下面的源码是已经修好的,但 ...

会修复的在这里回复
页: [1] 2
查看完整版本: 抖音无水印解析整站源码打包带api