There have been a couple of postings on this but it does not answer my direct question.
Currently we ware using the code like:
NSString *post = [NSString stringWithFormat:@"fb://publish/profile/me?text=%@",@"Some Link"];
BOOL canOpenURL = [[UIApplication sharedApplication] canOpenURL:[NSURL URLWithString:post]];
if ( canOpenURL && ![Utils isipad] && hFaceBookCheckAppFirst )
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:post]];
etc. This works fine for positing. It starts up the Facebook App and then the user can post, etc.
What are the other verbs that can be used instead of
fb://publish
Can’t seem to find the docs on this. Does not seem to be in the Facebook SDK docs, which brings up the web interface.
This works on iPhones.