I have made a facebook php webapp, I am using the following code to make facebook redirect to the "got to app" permissions page
$params = array(
scope => 'publish_stream,user_likes',
redirect_uri => 'https://www.facebook.com/pages/mypage/480192585363812?sk=app_23508216934343'
);
$loginUrl = $facebook->getLoginUrl($params);
echo "<script>
window.top.location = '$loginUrl';
</script>";
This works fine and takes me to the page correctly, however when I click on "got to app", then facebook displays a second dialog, the URL is
https://www.facebook.com/dialog/permissions.request
How do I prevent the second page and allow the user to authorise the app in one click?