1

您好,这是我第一次将 facebook 集成到我的任何 android 应用程序中,我需要实现功能来喜欢 fp 页面/帖子并在 fb 页面/帖子上发表评论,,,!! 我已经下载了适用于 android 的 fb sdk 并玩弄了它但是我仍然不清楚我需要做什么以及如何满足要求我需要的是当用户单击我的应用程序中的一个按钮时它会自动喜欢一个fb帖子,它将编辑文本中的文本作为评论提交给fb帖子,,!!有人能告诉我该怎么做吗

4

2 回答 2

0

“喜欢”帖子:

就像是:

Facebook mFacebook = new Facebook();
mFacebook.request(THE_POST_ID + "/likes", parameters, "POST");

要对帖子“发表评论”

Bundle parameters = new Bundle();
parameters.putString("message", edtComment.getText().toString());
mFacebook.request(THE_POST_ID + "/comments", parameters, "POST");
于 2013-03-19T12:23:37.857 回答
0

喜欢一个帖子

Request likeRequest = new Request(Session.getActiveSession(), postId + "/likes", null, HttpMethod.POST, new Request.Callback() {

                 @Override
                 public void onCompleted(Response response) {
                     this.like.setText("liked");
                     this.like.setEnabled(false);
                     CommentAdapter.this.like.setBackgroundResource(R.drawable.disabled_like);
                     this.getLikesCount();
                 }
            });
            Request.executeBatchAsync(likeRequest);
于 2013-05-10T10:29:49.360 回答