I understand with vk api. I want to pull out user information in the fields of games, education, occupation. On the test page on https://vk.com/dev/users.get all fields are returned: 
But when I do it via JAVA SDK. Not all fields come: 
Here is my code snippet:
String str = vk.users().get(new UserActor(app_id, access_token)) .userIds("5933129") .fields(UserField.EDUCATION, UserField.GAMES, UserField.OCCUPATION) .executeAsString(); System.out.println(str); From the documentation I learned that
But I kind of pass the access_token through the UserActor object, or I do not understand something like that. As an access_token I use the 'Service Access Key' which I took from the settings in the personal account of the application.
I tried to execute via the browser:
https://api.vk.com/method/users.get?user_ids=5933129&fields=games,education,occupation&access_token=xxxxxxx3&v=5.69 also comes hidden: 1
The question is how to ensure that all fields are returned?
