The problem is this: the request for receiving user photos is not processed by the listener. Ie he just misses it. When replacing the request for receiving data about the user, the listener responds and processes everything (the debager goes to onComplete () and I can see that in the string str). Request Code:
//VKRequest request = VKApi.users().get(VKParameters.from(VKApiConst.USER_ID, UserId, VKApiConst.FIELDS, "counters, connections,contacts,site")); VKRequest request = new VKRequest("photos.getAll", VKParameters.from(VKApiConst.OWNER_ID,UserId), VKPhotoArray.class); request.executeWithListener(new VKRequest.VKRequestListener() { @Override public void onComplete(VKResponse response) { super.onComplete(response); String str = response.json.toString(); } }); So I understand that the problem is in creating a request for receiving photos. How then to correctly form a request? An example was taken from here .