gpt4 book ai didi

android - 如何在 android 中的 facebook 上发布图像?

转载 作者:太空狗 更新时间:2023-10-29 13:29:54 25 4
gpt4 key购买 nike

我有一个整数数组,其中有来自可绘制文件夹的图像。现在我想将该整数数组中的图像分享到 facebook 墙上。我尝试了下面的代码

    Uri imageuri  = Uri.parse("android.resource://" + "package name/" + mBitmapIds[int_image_position]);
String filePath = imageuri.getEncodedPath();
Bundle bundle=new Bundle();
bundle.putString("picture", filePath);
facebookConnector.getFacebook().request("me/feed", bundle, "POST");

其中 mBitmapIds 是 int 数组,但它没有将图像发布到墙上。谁能告诉我我该怎么做。提前致谢。

最佳答案

尝试使用AsyncFacebookRunner .

Bundle bundle = new Bundle();
bundle.putString("message", "picture caption");
bundle.putByteArray("picture", ImageBytes);
mAsyncRunner.request("me/photos", param, "POST", new SampleUploadListener());

请引用Android post picture to Facebook wall也是。

希望对您有所帮助。

关于android - 如何在 android 中的 facebook 上发布图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16933174/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com