我正在开发一个在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资源管理器?
答案 0 :(得分:0)
如果没有图表API,我认为你无法做到这一点。一旦你调用ShareApi.share(),实际上有一个图形API请求上传照片,你会得到各种平台的喜欢,你的应用程序无法知道已经发布了多少喜欢