hey everyone,
Im creating a mobile website and trying to implement facebook connect. I am using the PHP SDK
I have following code:
    $loginUrl = $facebook->getLoginUrl(array(
                'auth_token' => $session['auth_token'],
                'next' => 'http://www.site.com/fbconnect',
                'cancel' => 'http://www.site.com/fbconnect',
                'canvas' => 0,
                                    'fbconnect' => 1,
                                    'req_perms' => 'publish_stream'));
I sign in, but I never get redirected back to my app. I stay on m.facebook.com w/ a msg The page you requested was not found.
Is there something im missing?