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.
Quoting from facebook “Feed Dialog” docs:
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:
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.