As I remember in sdk there is no function for accounts of the type such as yours, but you can do it
String token = VKSdk.getAccessToken().accessToken; VKParameters parameters = VKParameters.from(VKApiConst.ACCESS_TOKEN, token); VKRequest request = new VKRequest("account.getProfileInfo", parameters); request.executeWithListener(new VKRequestListener(MainActivity.this) { @Override public void onComplete(VKResponse response) { super.onComplete(response); String status = ""; try { JSONObject jsonObject = response.json.getJSONObject("response"); String first_name = jsonObject.getString("first_name"); String last_name = jsonObject.getString("last_name"); String screen_name = jsonObject.getString("screen_name"); status = jsonObject.getString("status"); } catch (JSONException e) { e.printStackTrace(); } } }); public class VKRequestListener extends VKRequest.VKRequestListener { private final Context mContext; public VKRequestListener(Context context) { mContext = context; } @Override public void onError(VKError error) { super.onError(error); if(error.errorCode == 14) { VKCaptchaDialog vkCaptchaDialog = new VKCaptchaDialog(error); vkCaptchaDialog.show(mContext, new DialogInterface.OnDismissListener() { @Override public void onDismiss(DialogInterface dialog) { } }); } }
}