I've got a Facebook application, but there is a problem with new users.
When using the direct URL http://eriknijland.nl/raaddestraat/ everything works fine. And new users get redirected to a 'Request for permission' screen.
But when using the Facebook Canvas page at http://apps.facebook.com/raaddestraat/ (which loads the earlier mentioned URL in an iframe) first time users get to see a Facebook logo instead of the request for permission. Clicking the logo redirects to this permission screen. But users rarely click the logo because it's very unclear.
How to fix this properly?
My simplified login code:
function login ()
{
$authorizationUrl = 'https://graph.facebook.com/oauth/authorize?client_id=' . $this->_applicationId . '&redirect_uri=' . $this->_redirectUrl;
header('Location: ' . $authorizationUrl);
exit();
}
The _redirectUrl points to an authorization function. But new users never end up here. Since it requires the Facebook permissions.
I've read & tried using location.href instead of PHP redirects. It has no effect. Using top.location.href has effect. It's working then. But I don't want my application to exit the 'Facebook canvas iframe'.
