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 post a message to the users wall using the official facebook SDK for Android.

            parameters.putString("method", "feed");
            parameters.putString("link", "www.example.com");
            parameters.putString("name", "Example Web");
            parameters.putString("description", "An example website for testing.
            parameters.putString("message", etMessage.getText().toString());
            facebook.dialog(this, "feed", parameters,
                    new DialogListener() {...

Everything gets successfully addressed in the Dialog, except for the message. In the dialog, the message field is empty.

Please help, Thanks!

share|improve this question

2 Answers

up vote 2 down vote accepted

As BK said, the message field is now deprecated. The only way I've found that you can still do this it to request the publish_stream permission and make a post directly to their wall, without letting them see the message or click "Share" (from the Facebook UI). In some cases this could be what you want though. It was for me. This tutorial was helpful in showing how to do that.

Additional note: You can create a custom dialog to let the user view or edit the message prior to posting.

share|improve this answer

The message field was deprecated in July 2011 because Facebook wants users to post unique content. See this blog post:

Breaking Change: "message" parameter ignored in Feed Dialog

On July 12, we are ignoring the message parameter in Feed Dialogs. This eliminates the ability to pre-fill stream stories (prohibited by Policy IV.2). This change encourages users to share authentic and relevant content with their friends.

share|improve this answer
Wow...that sucks...Any other way to do it? – Pathachiever11 Feb 6 '12 at 2:33
You can build your own dialog, prompt for publish_stream permission and then post directly to their wall. – BK. Feb 6 '12 at 3:55
I do have my own dialog, but I'm not sure how to proceed with your recommendation...Could you please show me how to do it manually? – Pathachiever11 Feb 7 '12 at 23:18

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.