I work in Android Studio. With the help of my program, you can publish a post in the VK community. Authorization done. Next You need to upload a photo to the server, but when I try to do this, I see an error in the console: 
Here is a piece of code where I perform actions:
ImageView imgVkPost = (ImageView) findViewById(R.id.imgVkPost); final Bitmap photo =((BitmapDrawable) imgVkPost.getDrawable()).getBitmap(); VKRequest request2 = VKApi.uploadWallPhotoRequest(new VKUploadImage(photo, VKImageParameters.jpgImage(0.9f)), 0, 60479154); request2.executeWithListener(new VKRequest.VKRequestListener() { @Override public void onComplete(VKResponse response) { super.onComplete(response); System.out.println(response.json.toString()); } @Override public void onError(VKError error) { Toast.makeText(getApplicationContext(), "Ошибочка вышла:(", Toast.LENGTH_SHORT).show(); System.out.println(error); } @Override public void attemptFailed(VKRequest request, int attemptNumber, int totalAttempts) { } }); How to be? What am I doing wrong?