找回密码
 立即注册

QQ登录

只需一步,快速开始

搜索
广告投放联系QQ68610888
查看: 1513|回复: 20

[iptv信源 资源分享或寻求] 济南电视台app接口代理出来怎么看不了,帮忙看看

[复制链接]
发表于 2021-4-6 10:30 | 显示全部楼层 |阅读模式
<?php
$id=$_GET["id"];//id,13
$url=file_get_contents("http://pmobile.ijntv.cn/ijntv2/channel_detail.php?appkey=199bIMpav3kSRNtuo9GEEBpQMNPw3aaV&appid=7&channel_id=".$id);
preg_match('/"url":"(.*?)"/i',$url,$sn);
$playurl=str_replace('\/','/',$sn[1]);
header('location:'.$playurl);
?>

点评

用这个接口试试,不用跨域:http://zhibo.ijntv.cn/m2o/channel/channel_info.php?id=  发表于 2021-4-6 12:12
我的恩山、我的无线 The best wifi forum is right here.
发表于 2021-4-6 10:37 | 显示全部楼层
你输出以下你的结果不就知道了,直接就是报错。应该是不能用file_get_contents
Warning: file_get_contents(http://pmobile.ijntv.cn/ijntv2/c ... 7&channel_id=13): failed to open stream: HTTP request failed! HTTP/1.1 502 Bad Gateway in D:\Program Files\phpstudy_pro\WWW\ijntv.php on line 3

点评

师傅能说一下用什么吗,怎么改  详情 回复 发表于 2021-4-6 10:42
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 10:42 | 显示全部楼层
EScZkc_1d8 发表于 2021-4-6 10:37
你输出以下你的结果不就知道了,直接就是报错。应该是不能用file_get_contents
Warning: file_get_content ...

师傅能说一下用什么吗,怎么改

点评

不清楚,我也是半桶水。  详情 回复 发表于 2021-4-6 10:54
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 10:54 | 显示全部楼层
fxgsfxgs 发表于 2021-4-6 10:42
师傅能说一下用什么吗,怎么改

不清楚,我也是半桶水。

点评

不要谦虚了嘛  详情 回复 发表于 2021-4-6 10:55
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 10:55 | 显示全部楼层
EScZkc_1d8 发表于 2021-4-6 10:54
不清楚,我也是半桶水。

不要谦虚了嘛

点评

实话实说,真不懂,我只知道file_get_content没办法用的时候应该要用curl,但是怎么写我真不会。 你去找找其他有用curl的php,参照格式改改试试看。  详情 回复 发表于 2021-4-6 11:04
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 11:04 | 显示全部楼层

实话实说,真不懂,我只知道file_get_content没办法用的时候应该要用curl,但是怎么写我真不会。
你去找找其他有用curl的php,参照格式改改试试看。

点评

用过curl也不行  详情 回复 发表于 2021-4-6 11:05
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 11:05 | 显示全部楼层
EScZkc_1d8 发表于 2021-4-6 11:04
实话实说,真不懂,我只知道file_get_content没办法用的时候应该要用curl,但是怎么写我真不会。
你去找 ...

用过curl也不行

点评

刚把curl的几个常见参数都试了一遍,试了个可以用的,但是有没有bug我就不知道了。  详情 回复 发表于 2021-4-6 11:38
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 11:38 | 显示全部楼层

刚把curl的几个常见参数都试了一遍,试了个可以用的,但是有没有bug我就不知道了。
  1. <?php
  2. $id=$_GET["id"];//id,13
  3. $url=("http://pmobile.ijntv.cn/ijntv2/channel_detail.php?appkey=199bIMpav3kSRNtuo9GEEBpQMNPw3aaV&appid=7&channel_id=".$id);
  4. $ch = curl_init();
  5.         curl_setopt($ch, CURLOPT_URL, $url);
  6.         curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36');
  7.         curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
  8.         $re = curl_exec($ch);
  9.         curl_close($ch);
  10. $json = json_decode($re);
  11. header('Location:'.$json[0]->m3u8);
  12. ?>
复制代码

点评

好像我刚才没加USERAGENT  详情 回复 发表于 2021-4-6 11:53
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 11:53 | 显示全部楼层
EScZkc_1d8 发表于 2021-4-6 11:38
刚把curl的几个常见参数都试了一遍,试了个可以用的,但是有没有bug我就不知道了。

好像我刚才没加USERAGENT
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 12:31 | 显示全部楼层
我想代理app的epg,你这个接口不行
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 12:49 | 显示全部楼层
貌似有静态的地址,另外我一直用的这个接口 http://www.ijntv.cn/m2o/channel/channel_info.php?id=

点评

主要是想代理回看,手机app的epg接口才行  详情 回复 发表于 2021-4-6 12:52
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

 楼主| 发表于 2021-4-6 12:52 | 显示全部楼层
yanghaoclub 发表于 2021-4-6 12:49
貌似有静态的地址,另外我一直用的这个接口 http://www.ijntv.cn/m2o/channel/channel_info.php?id=

主要是想代理回看,手机app的epg接口才行
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

发表于 2021-4-6 14:35 | 显示全部楼层
本帖最后由 可酷可乐 于 2021-4-6 14:38 编辑

这个判断了referer
加referfer就行了。且M3U8也判断了。所以要把M3U8用服务器来输出。而不是直接location
我的恩山、我的无线 The best wifi forum is right here.
回复

使用道具 举报

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

本版积分规则

有疑问请添加管理员QQ86788181|手机版|小黑屋|Archiver|恩山无线论坛(常州市恩山计算机开发有限公司版权所有) ( 苏ICP备05084872号 )

GMT+8, 2024-4-26 09:34

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

| 江苏省互联网有害信息举报中心 举报信箱:js12377 | @jischina.com.cn 举报电话:025-88802724 本站不良内容举报信箱:68610888@qq.com 举报电话:0519-86695797

快速回复 返回顶部 返回列表