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'm trying to integrate posting to one's wall from within my app.i try this code but i get response like this

   public void postMessageOnWall(String msg) {
        Log.d("Tests", "Testing graph API wall post");
         try {
                String response = mFacebook.request("feed");
                Bundle parameters = new Bundle();
                parameters.putString("message", "dfsagfsadfsafsadf by thamil");
                parameters.putString("description", "test test test");

                response = mFacebook.request("feed", parameters);
                Log.d("Tests", "got response: " + response);
                if (response == null || response.equals("") || 
                        response.equals("false")) {
                   Log.v("Error", "Blank response");
                }
         } catch(Exception e) {
             e.printStackTrace();
         }

            }




' {"error":{"message":"No node specified","type":"Exception"}}'
share|improve this question

2 Answers

You need to specify the feed you wish to post to, e.g.

response = mFacebook.request("me/feed", parameters, "POST");

This will post to your own feed.

There are some useful examples provided by Facebook on GitHub, such as this one (scroll down to the testAuthenticatedApi() method for an example of what you're trying to do).

share|improve this answer

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.