gpt4 book ai didi

java - 使用 java 以编程方式从 Facebook 获取照片的点赞数

转载 作者:太空宇宙 更新时间:2023-11-04 12:16:19 25 4
gpt4 key购买 nike

我正在开发一个 Andorid 应用程序,它在 Facebook 上发布一些照片,同时我想计算我的 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);

}

How to calculate the number of likes of posted photo with java instead of using Graph API Explorer manually ?

最佳答案

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

关于java - 使用 java 以编程方式从 Facebook 获取照片的点赞数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39378864/

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