I've successfully integrated the Facebook iOS SDK into my iPhone project, and can make graph requests, so I know that I've got my authentication tokens and permissions working properly.
My problem is that when I try to pass a Facebook url into a UIWebView (to look at someone's profile for example, and then be able to take actions such as sending a friend-request), the webview opens up with a Sign In/Login option again there, which shouldn't happen since my user has already signed in via the FB SDK.
Interestingly, opening a url via openURL launches the Safari app and loads the page as the properly authenticated user... however, then I'm outside of my app:
NSString *url = [NSString stringWithFormat:@"http://m.facebook.com/RobertScoble"];
[[UIApplication sharedApplication] openURL:[NSURL URLWithString: url]];
So my question is: is there some way of loading a webview via the facebook-ios-sdk as the authenticated user? Or, is there some way to force openURL to not load the page in Safari, but within my webview instead?
Thanks in advance!