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.

Straight to the point. I have an android app which makes status update and event post on facebook wall. I am using the facebook sdk from this this web site https://github.com/ddewaele/AndroidFacebookSample/tree/master/src/com/ecs/android/facebook/Sample

I am able to post events properly. The problem is with posting status updates. There is this menu option in my code , when I press Post On wall menu, a facebook dialoge pops up , which says Post to the wall and below is the text field where I am suppose to enter my status. But that field I want it to be pre-written with the text I am providing it with.

Please Help, Thanx in advance. Please let me know if you need the code.

share|improve this question

closed as off topic by jeffamaphone, Josh Lee, BK., Brian Roach, Jeremy Banks Aug 31 '11 at 1:29

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 4 down vote accepted

Quoting from facebook "Feed Dialog" docs:

message
This field will be ignored on July 12, 2011 The message to prefill the text field that the user will type in. To be compliant with Facebook Platform Policies, your application may only set this field if the user manually generated the content earlier in the workflow. Most applications should not set this.


In other words it seems that you can't prefill the post to wall dialog any more, Instead you can do it by:

Quoting from facebook "User object" docs:

issuing an HTTP POST request to PROFILE_ID/feed


for further info you can read:
-FaceBook documentation for the user object

-FaceBook documentation for the post object

P.S: If you aren't familiar with the FaceBook docs try to skim the android sdk that you are using to find some kind of method to post to the wall directly without using the Feed Dialog.

share|improve this answer

Check out the graph's post API (not to be confused with HTTP POST). I'm assuming you're using one of the Facebook.dialog(...) methods, just add to the Bundle parameter a key (message) and String value ("your message") pair to fill in the status.

share|improve this answer

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