I'm using facebook to publish a message to the user's facebook page. I am able to get the pop up that lets the user enter in their own message, but I want the message to be already filled out for them.
I am using
Code:
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kAppId, @"app_id",
//other params
@"Hello.", @"message",
nil];
[_facebook dialog:@"feed" andParams:params andDelegate:self];
but it is keeping the message blank, instead of changing it to "Hello.".
Here is facebook's post saying this is possible:
Feed Dialog - Facebook Developers
Thanks for any help!