Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to develop a Facebook application for Android. I am unable to integrate the "Add Comment" feature to photos in Facebook Albums. Using the Graph API, I can show the previously made comments on a photo. However, I just can't add new comments to a photo.

Can somebody provide me some helpful advice?

share|improve this question

1 Answer

here is simple example on doing that..

// 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)"));

and here is a simple example for the listener (you can get this from examples of facebook-android-sdk too)

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());
            }
        }
    }
share|improve this answer
its works for me thank you so much.... – Manoj Kumar Mar 15 at 12:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.