I try opening a simple dialog from my iOS app to post something on a user's wall. However it seems the "name" parameter is completely ignored.
Here is the code, I use the facebook SDK from Github, pulled the version yesterday.
NSMutableDictionary * params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"This is the name",@"name",nil];
[facebook dialog:@"feed"
andParams:params
andDelegate:self];
The dialog shown only shows: "Post to your wall" "Write something..."
the text box
"via MyApp"
When actually posting the post is completely empty. Why is the "name" parameter completely ignored?