vknode
Version:
Library for working with VK API
34 lines • 5.37 kB
JSON
[{ "code": 1, "text": "Unknown error occurred", "solution": "Try again later." },
{ "code": 2, "text": "Application is disabled. Enable your application or use test mode", "solution": "You need to switch on the app in Settings (https://vk.com/editapp?id={Your API_ID}\nor use the test mode (test_mode=1)." },
{ "code": 3, "text": "Unknown method passed", "solution": "Check the method name: http://vk.com/dev/methods ." },
{ "code": 4, "text": "Incorrect signature", "solution": "Check if the signature has been formed correctly: https://vk.com/dev/api_nohttps." },
{ "code": 5, "text": "User authorization failed", "solution": "Make sure that you use a correct authorization type." },
{ "code": 6, "text": "Too many requests per second", "solution": "Decrease the request frequency or use the execute method.\nMore details on frequency limits here: http://vk.com/dev/api_requests." },
{ "code": 7, "text": "Permission to perform this action is denied", "solution": "Make sure that your have received required permissions during the authorization. You can do it with the account.getAppPermissions method." },
{ "code": 8, "text": "Invalid request", "solution": "Check the request syntax and used parameters list (it can be found on a method description page) ." },
{ "code": 9, "text": "Flood control", "solution": "You need to decrease the count of identical requests. For more efficient work you may use execute or JSONP." },
{ "code": 10, "text": "Internal server error", "solution": "Try again later." },
{ "code": 11, "text": "In test mode application should be disabled or user should be authorized", "solution": "Switch the app off in Settings: https://vk.com/editapp?id={Your API_ID}." },
{ "code": 14, "text": "Captcha needed", "solution": "Work with this error is explained in detail on the separate page." },
{ "code": 15, "text": "Access denied", "solution": "Make sure that you use correct identifiers and the content is available for the user in the full version of the site." },
{ "code": 16, "text": "HTTP authorization failed", "solution": "To avoid this error check if a user has the 'Use secure connection' option enabled with the account.getInfo method." },
{ "code": 17, "text": "Validation required", "solution": "Make sure that you don't use a token received with http://vk.com/dev/auth_mobile for a request from the server. It's restricted. The validation process is described on the separate page." },
{ "code": 18, "text": "User was deleted or banned" },
{ "code": 20, "text": "Permission to perform this action is denied for non-standalone applications", "solution": "If you see this error despite your app has the Standalone type, make sure that you use redirect_uri=https://oauth.vk.com/blank.html. Details here: http://vk.com/dev/auth_mobile." },
{ "code": 21, "text": "Permission to perform this action is allowed only for Standalone and OpenAPI applications", "solution": "" },
{ "code": 23, "text": "This method was disabled", "solution": "All the methods available now are listed here: http://vk.com/dev/methods." },
{ "code": 24, "text": "Confirmation required", "solution": "Confirmation process is described on the separate page." },
{ "code": 27, "text": "Group authorization failed", "solution": "" },
{ "code": 28, "text": "Application authorization failed", "solution": "" },
{ "code": 100, "text": "One of the parameters specified was missing or invalid", "solution": "Check the reqired parameters list and their format on a method description page." },
{ "code": 101, "text": "Invalid application API ID", "solution": "Find the app in the administrated list in settings: http://vk.com/apps?act=settings\nAnd set the correct API_ID in the request." },
{ "code": 113, "text": "Invalid user id", "solution": "Make sure that you use a correct id. You can get an id using a screen name with the utils.resolveScreenName method" },
{ "code": 150, "text": "Invalid timestamp", "solution": "You may get a correct value with the utils.getServerTime method." },
{ "code": 200, "text": "Access to album denied", "solution": "Make sure you use correct ids (owner_id is always positive for users, negative for communities) and the current user has access to the requested content in the full version of the site." },
{ "code": 201, "text": "Access to audio denied", "solution": "Make sure you use correct ids (owner_id is always positive for users, negative for communities) and the current user has access to the requested content in the full version of the site." },
{ "code": 203, "text": "Access to group denied", "solution": "Make sure that the current user is a member or admin of the community (for closed and private groups and events)." },
{ "code": 300, "text": "This album is full", "solution": "You need to delete the odd objects from the album or use another album." },
{ "code": 500, "text": "Permission denied. You must enable votes processing in application settings", "solution": "Check the app settings: http://vk.com/editapp?id={Your API_ID}§ion=payments" },
{ "code": 600, "text": "Permission denied. You have no access to operations specified with given object(s)", "solution": "" },
{ "code": 603, "text": "Some ads error occured", "solution": "" }
]