[Solved] Facebook wall post [closed]


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.

solved Facebook wall post [closed]