Android:在facebook上分享带有文本的图片



我的朋友,所以…我不能在facebook上分享一些文本预填充的图像,使用facebook sdk。我在我的应用程序中使用以下代码:

SharePhoto sharePhoto = new SharePhoto.Builder()
            .setBitmap(bitmap)
            .build();
SharePhotoContent content = new SharePhotoContent.Builder()
            .addPhoto(sharePhoto)
            .build();
ShareDialog.show(this, content);

,我在facebook文档中读到有一个SharePhoto的方法。将字符串设置为标题的生成器对象:

SharePhoto.Builder().setCaption(String capition)

,但当我添加到我的sharePhoto对象,它似乎不存在。那么我如何在我的帖子上添加预填充的文本呢?照片/图像是我的应用程序的截图!谁有解决办法?

pre-fill text-with-image不再有效阅读新的隐私和政策

https://developers.facebook.com/docs/apps/review/prefill

用用户之前在应用流程中手动输入的内容填充user message参数

用视频解释:https://developers.facebook.com/docs/apps/review/prefill

相关内容

  • 没有找到相关文章

最新更新