0

我的主要目标是从俄罗斯社交网络 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 网络来更改身份。我正在使用共享服务器,但没有安装 Tor 软件。也许是因为tor而出现问题?我怎样才能让它在共享的 cpanel 服务器上工作?

4

1 回答 1

0

尝试通过在 Grabber.php 中注释掉以下行来禁用 TOR

CURLOPT_PROXY => $this->torSettings['ip'].':'.$this->torSettings['port'],
CURLOPT_PROXYTYPE => CURLPROXY_SOCKS5,
于 2013-10-31T10:40:51.937 回答