From my application I try to share a document (hyphal animation) on my wall using this code:
VKApiDocs docs = new VKApiDocs(); VKRequest uploadWallServerRequest = docs.uploadWallDocRequest(file); uploadWallServerRequest.executeWithListener(new VKRequestListener() { @Override public void onComplete(VKResponse response) { super.onComplete(response); } });
As far as I understand, after the execution of this code (onComplete (VkResponse) occurs, the request is successful) this gif-animation should appear on the wall of my profile. But it appears only in the list of my documents, it is not on the wall.
How to make a document on the wall?