Actually, the code:
window.onload = function() { VK.init({ apiId: id приложения }); } $('#vk_link').on('change', function () { var link = $(this).val(); var group_id = link.substr(link.lastIndexOf('/') + 1); VK.Api.call('groups.getById', { access_token: 'здесь токен', group_id: group_id, group_ids: group_id, fields: "description, place, start_date, finish_date" }, function(result){ console.log(result); }); }); As a result, completely different fields are returned, not the ones requested (except for the description). What is wrong here?