1

我正在开发一个在 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 计算发布照片的点赞数?

4

1 回答 1

0

如果没有图形 API,我认为您无法做到这一点。一旦你调用了ShareApi.share(),实际上有一个图API请求上传照片,你会得到来自各个平台的点赞,你的应用无法知道点赞了多少

于 2016-09-07T21:20:02.813 回答