I am struggling with how the parameters for facebook.showDialog() mean.
If i wanted to create a post on the users timeline, and fill the post message with something sent from my app, isn’t the format :
#######################################################
facebook.showDialog( “feed”, {
message = bestMessage,
})
#######################################################
But In another post on the forums a user posted that this works and not the first way
#######################################################
facebook.showDialog( “feed”, {
message = “”,
name = bestMessage,
})
#######################################################
However, neither of these works for me. I am able to login into facebook, and it starts a new post saying it’ll be sent from my app. But instead of populating the field of the message box it leaves it blank.
Any ideas?
Ps. I appologize for the #'s sorrounding sections of code… it seems if i put appropriate tags for the code [.code] and [./code] (without the dots) around my block eliminates everything past it