I have a canvas app in facebook, and I'm using the code:
$loginUrl = $facebook->getLoginUrl(
array(
'canvas' => 1,
'fbconnect' => 0,
'scope' => 'email,publish_stream,offline_access'
));
However all the time when a user clicks the "Go To App" button it redirects straight back to my app not in facebook, but in fact the full URL.
How can I make it go back to the app page?
