android – 将图像上传到vk.com

android – 将图像上传到vk.com,第1张

概述我可以在VKontakte(vk.com)中成功发布消息,但我无法找到在附件中发布带有图像的消息的方法. 方法: createWallPost(long owner_id, String text, Collection<String> attachments, String export, boolean only_friends, boolean from_group, boolean sig 我可以在VKontakte(vk.com)中成功发布消息,但我无法找到在附件中发布带有图像的消息的方法.

方法:

createWallPost(long owner_ID,String text,Collection<String> attachments,String export,boolean only_frIEnds,boolean from_group,boolean signed,String lat,String lon,String captcha_key,String captcha_sID);

所以,如果我像这样使用这个方法:

API.createWallPost(account.user_ID,message,null,false,null);

它将成功发布带有一些文本的消息;

我必须使用

Collection<String> attachments

参数并以某种方式将位图放入集合中.
我可以发布图片的链接,但我不想要链接,我想要一个嵌入的图像.有什么建议?

SDK is here (Russian):

Method

解决方法 那么,还有一个变种:

1)下载官方VK androID SDK https://github.com/VKCOM/vk-android-sdk

2)授权

3)看一个例子:

final Bitmap photo = getPhoto();VKRequest request = VKAPI.uploaDWallPhotoRequest(new VKUploadImage(photo,VKImageParameters.jpgImage(0.9f)),0);request.executeWithListener(new VKRequestListener() {    @OverrIDe    public voID onComplete(VKResponse response) {        photo.recycle();        VKAPIPhoto photoModel = ((VKPhotoArray) response.parsedModel).get(0);        //Make post with photo    }    @OverrIDe    public voID onError(VKError error) {        showError(error);    }});
总结

以上是内存溢出为你收集整理的android – 将图像上传到vk.com全部内容,希望文章能够帮你解决android – 将图像上传到vk.com所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1129169.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存