Can I post on to a friends wall that does not have the app installed? Does my app need to be reviewed by facebook to do this? How do I do this?
What is the difference between
facebook.showDialog()
and
facebook.request( "me/feed", "POST", { message="Hello Facebook" } ) ?
I heard “feed” will be deprecated and be replaced by “share” for “facebook.showDialog()” is this also true for the above facebook.request()?
What are ways to invite nonusers to play my game? I know I can do the following
local params = { app\_id = fbAppID, message = "Try this game!" } facebook.showDialog("apprequests", params)
But how will the recipient try my game if I can’t send a download link with this?