I m developing an iPhone app which includes facebook wall posting.After log in, I post to user\'s wall by following code:
NSString *appIcon = [NSString stringWit
you should have a small block of code that looks similar to this below. If not - search for read_stream in your code -
if ((self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil])) {
_permissions = [[NSArray arrayWithObjects:
@"read_stream", @"offline_access",nil] retain];
}
Add @"stream_publish" to the list and you should be good to go.
-Jon