We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
При выполнении метода execute могут происходить ошибки на стороне vk. Например, из-за отсутствия у пользователя доступа к информации. Пример кода:
var l = []; l = l + [API.friends.get({"user_id":2})]; l = l + [API.friends.get({"user_id":3})]; return l;
VK сообщает об этих ошибках, записывая в ответе:
response: [{ count: 21, items: [1, 21, 22, 34, 197, 234, 241, 254, 318, 447, 799, 6492, 46520, 54678, 100000, 139650, 168850, 371559, 3434278, 4585474, 9719828] }, false],
execute_errors: [{ method: 'friends.get', error_code: 15, error_msg: 'Access denied: user deactivated' }, { method: 'execute', error_code: 15, error_msg: 'Access denied: user deactivated' }]
Однако об этих ошибках пользователю ничего не сообщается.
The text was updated successfully, but these errors were encountered:
Тоже столкнулся с этой проблемой. Наверное, могут помочь конструкций try - except, но что-то я их в vk script не нашёл.
В данный момент я в начале избавляюсь от удалённых аккаунтов, а потом уже прогоняю friends.get.
Sorry, something went wrong.
Не знаю как это реализовать в настоящий момент.
Исправлено благодаря #127
No branches or pull requests
При выполнении метода execute могут происходить ошибки на стороне vk. Например, из-за отсутствия у пользователя доступа к информации.
Пример кода:
var l = [];
l = l + [API.friends.get({"user_id":2})];
l = l + [API.friends.get({"user_id":3})];
return l;
VK сообщает об этих ошибках, записывая в ответе:
response: [{
count: 21,
items: [1, 21, 22, 34, 197, 234, 241, 254, 318, 447, 799, 6492, 46520, 54678, 100000, 139650, 168850, 371559, 3434278, 4585474, 9719828]
}, false],
execute_errors: [{
method: 'friends.get',
error_code: 15,
error_msg: 'Access denied: user deactivated'
}, {
method: 'execute',
error_code: 15,
error_msg: 'Access denied: user deactivated'
}]
Однако об этих ошибках пользователю ничего не сообщается.
The text was updated successfully, but these errors were encountered: