Jump to content
  • 0

Код ошибки vk.api: 8 Invalid request:


medium
 Share

Question

Привет

Скрипт для отправки уведомлений вконтакте

Ошибка:"error_code":8,"error_msg":"Invalid request: same query repeated too frequently" //ошибка метода secure.sendNotification

Метод: _http://vkontakte.ru/pages.php?o=-1&p=secure.sendNotification

Исходник:

require('VkApi.class.php');//думаю все знакомы с фреймворком
$api = new VkApiNode($app_id, $api_secret);
$uids = array (42207433); //просто тупо свои ид для проверки
$message = "Текст";
$query = $api->sendNotification($uids, $message);
function get_url($query) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $query);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, false);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
return curl_exec($ch);
curl_close($ch);
}
get_url($query);

Подскажите плиз как решить такую проблему? Возвращает ошибку "Неправильный запрос: тот же запрос повторяется слишком часто". Как он может повторятся если в массиве 1 ид, да и вообще нет цикла.

На сервере есть поддержка сURL

Взято отсюда(_http://flapps.ru/forum/topic2052.html), там же исходники, этот скрипт переделал для наглядности,регистрация у них несколько днеи поэтому обращаюсь сюда.

HELP!

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy