我想与链接共享图片网址。以前我使用shareLinkContent来共享图像和URL,但它现在不能正常工作。
.vscodeignore
这是我的代码,它只共享内容Url不共享图像Url。有没有其他方式与Facebook共享链接和图像。请帮我解决这个问题。
答案 0 :(得分:1)
private void sharePhotoToFacebook() {
Bitmap image = BitmapFactory.decodeResource(getResources(), R.drawable.b);
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(image)
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
ShareApi.share(content, null);
}
答案 1 :(得分:1)
截至2017年4月18日,不再支持以下参数 通过Graph API 2.9及更高版本。对于2.8及更低版本, 参数将继续有效,直到2017年7月17日。