无法在Facebook Android应用程序中为照片添加评论

时间:2010-10-22 06:44:43

标签: android facebook facebook-graph-api

我正在尝试为Android开发Facebook应用程序。我无法将“添加评论”功能集成到Facebook相册中的照片。使用Graph API,我可以在照片上显示以前发表的评论。但是,我无法在照片中添加新评论。

有人可以给我一些有用的建议吗?

1 个答案:

答案 0 :(得分:3)

这是一个简单的例子。

// post comment to single photo
        Bundle parameters = new Bundle();
        String target = "";

        target = "<PHOTO_ID>/comments";
        parameters.putString("message", "post Comment testing");
        mAsyncRunner.request(target, parameters, "POST", new FacebookRequestListener(target+" (post comment)"));

这里是一个听众的简单示例(你也可以从facebook-android-sdk的例子中得到这个)

public class FacebookRequestListener extends BaseRequestListener {

        String caller = "default";
        public FacebookRequestListener() {
        }
        public FacebookRequestListener(String caller) {
            this.caller = caller;
        }

        public void onComplete(final String response) {
            try {

                Log.d(TAG, "FacebookRequestListener|"+caller+":" + response);
            } catch (Exception e) {
                Log.w(TAG, "Error:"+e.getMessage());
            }
        }
    }