我的主要目标是从俄罗斯社交网络Vkontakte获取视频。使用以下https://github.com/sjevs/SJevsLib/脚本。决定像这样测试这个脚本:
<?php
ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(-1);
include 'vk.php';
$login = "..."; //Vkontakte login here
$password = "..."; //pass
$phoneLast4Digits = "..."; //digits
$vk = new Vk($login, $password, $phoneLast4Digits);
// Get array of the movies
$videos = $vk->search('The Avatar');
var_dump($videos);
// get iframe code for any movie from array
$html = $vk->play($videos[0]['id1'], $videos[0]['id2']);
echo $html;
var_dump什么都没回来。当我仔细研究一下grabber.php时,我发现它使用tor网络来改变身份。我正在使用共享服务器,我没有安装任何软件。也许是因为托尔出现了问题?如何在共享的cpanel服务器上运行它?
答案 0 :(得分:0)
尝试通过在Grabber.php中注释掉以下行来禁用TOR
CURLOPT_PROXY => $this->torSettings['ip'].':'.$this->torSettings['port'],
CURLOPT_PROXYTYPE => CURLPROXY_SOCKS5,