我正在开发一个在 Facebook 上发布一些照片的 Andorid 应用程序,同时我想从我的 android 应用程序中计算该照片的点赞数。
有关信息 - 我正在使用 Facebook SDK,并且我已成功登录 Facebook 帐户并发布了图像。
发布图片的方法如下
private void PublishImage()
{
Bitmap image = BitmapFactory.decodeResource(getResources(),R.mipmap.ic_launcher);
//Here we set all the required parameters to share the image and build that
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(image)
.setCaption("Testing Sharing Feature through java")
.build();
//Now we share the PhotoContent by adding the properties in instance of SharePhotoContent
share = new SharePhotoContent.Builder()
.addPhoto(photo)
.build();
//Now we use share API to share the image
ShareApi.share(share,null);
}
如何使用 java 而不是手动使用 Graph API Explorer 计算发布照片的点赞数?