I'm trying to create a Facebook tab application that can display a permissions dialog in the same it would work for a Facebook Connected website. I was hoping that for tab applications, housed within an iframe, the process would be the same if not very similar.
This is how I currently generate my log in URL:
$params = array(
'canvas' => 1,
'redirect_uri' => 'http://mysite.com/next_step",
'scope' => 'email,user_about_me',
);
$login_url = $facebook->getLoginUrl( $params );
This creates a log in URL which, when clicked, basically triggers a Facebook log in dialog if the user isn't already logged in and subsequently a permissions dialog if the user hasn't granted permissions for my application yet. This technique works flawlessly within the context of a website.
When I do this from within a Facebook housed iframe however, I get either the following result:
When a user hasn't accepted the permissions yet, after clicking the log in url, the user is redirected to a page within the iframe that simply displays a Facebook logo in the top left corner. Clicking the logo breaks the user out of the iframe and displays the permissions dialog. From that point on, the user is no longer in the iframe.
How can I make everything stay within the iframe and how can make it so that the page with the Facebook logo isn't shown?