私のプロジェクトでは、ユーザーは Facebook ネイティブ アプリ (FBConnect) を介してログインし、ユーザーのアクセス トークンを保持していました。私のアプリには、Facebookページのようなボタンのiframeを表示するようなボタンがあり、ユーザーがページのようなボタンを押すと、Facebookはユーザーに再度サインインするように求めます。ユーザーは現在ログインしており、トークンは有効であり、iframe でアクセス トークンを渡していますが、iframe の作成に使用しているコードは次のとおりです。
NSString *str=[NSString stringWithFormat:@"<iframe src=\"https://www.facebook.com/plugins/likebox.php?id=XXXXXXXXXXXXXXX&access_token=%@&width=292&connections=0&stream=false&header=false&height=62\" scrolling=\"no\" frameborder=\"0\" style=\"border:none; overflow:hidden; width:282px; height:62px;\" allowTransparency=\"true\"></iframe>",accesstoken];
NSString *likeButtonHtml = [NSString stringWithFormat:@"<HTML><BODY>%@</BODY></HTML>", str];
[webview loadHTMLString:likeButtonHtml baseURL:[NSURL URLWithString:@""]];
iframeのページのように、この2回目のログインを回避する方法を教えてください