I'm currently working on an iOS application that uses Facebook for login and wants to use facebook comments.
Facebook comments is not supported in the iOS SDK nor is it accessible using the /graph API. So we are forced to use the web version of this.
Now we want the users to be required to login inside the app using the iOS SDK first before allowing them to use comments. But since both use different cookies, while you can be logged in in the app, that doesn't mean that the loaded webview will properly represent the logged in user (if he is logged in at all).
Now I dug trough the facebook js sdk a little bit and found a few mentions of setAccessToken, which offcourse are private methods I cannot access, so is there any way for me to force, or fake however you will call it the javascript SDK login? With the information I have recieved from the iOS SDK?