Вангую, что это не ограничения курла, а ограничения ВК.
попробуй на время отладки, в
https://github.com/vladkens/VK/blob/master/src/VK/...
поменять это:
private function request($url, $method = 'GET', $postfields = array())
{
curl_setopt_array($this->ch, array(
CURLOPT_USERAGENT => 'VK/1.0 (+https://github.com/vladkens/VK))',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_POST => ($method == 'POST'),
CURLOPT_POSTFIELDS => $postfields,
CURLOPT_URL => $url
));
return curl_exec($this->ch);
}
на это
private function request($url, $method = 'GET', $postfields = array())
{
curl_setopt_array($this->ch, array(
CURLOPT_USERAGENT => 'VK/1.0 (+https://github.com/vladkens/VK))',
CURLOPT_RETURNTRANSFER => true,
CURLOPT_SSL_VERIFYPEER => false,
CURLOPT_POST => ($method == 'POST'),
CURLOPT_POSTFIELDS => $postfields,
CURLOPT_URL => $url
));
$ret = curl_exec($this->ch);
if (curl_error($this->ch)) die('CURL ERR:'.curl_error($this->ch));
return $ret;
}
Думаю, при выполнении упадет с ошибкой от ВК