Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Please fix this facebook authentication code

This script it not working properly. When user authorise the app it redirects out of facebook and showing in my url(joomla.singlelinelogics.com).Not inside the facebook canvas

If the user is logged out of facebook or not authenticated its showing the below error

fatal error: Uncaught OAuthException: Error validating access token: User 100004416180057 has not authorized application 508908225803576. thrown in /home/singleli/public_html/joomla/fb/base_facebook.php on line 1028

This is the code

<?php

    // Requires Facebook PHP SDK 3.0.1: https://github.com/facebook/php-sdk/
    require ('fb/facebook.php');

    define('FACEBOOK_APP_ID',"xxxxxxxxx");
    define('FACEBOOK_SECRET',"xxxxxxxxxxx");

    $user = null;

    $facebook = new Facebook(array(
        'appId' => FACEBOOK_APP_ID,
        'secret' => FACEBOOK_SECRET,
        'cookie' => true
    ));

    $user = $facebook->getUser(); // Get the UID of the connected user, or 0 if the Facebook user is not connected.

    if($user == 0) {

        /**
         * Get a Login URL for use with redirects. By default, full page redirect is
         * assumed. If you are using the generated URL with a window.open() call in
         * JavaScript, you can pass in display=popup as part of the $params.
         * 
         * The parameters:
         * - redirect_uri: the url to go to after a successful login
         * - scope: comma separated list of requested extended perms
         */

        $login_url = $facebook->getLoginUrl($params = array('scope' => "publish_stream,user_photos,friends_photos"));

        echo ("<script> top.location.href='".$login_url."'</script>");

    }
share|improve this question
2  
Welcome to Stack Overflow! This is not a request site and most likely people here do not like this type of requests. Please remake your question, post ONLY what you tried and what error you encountered. – Mihai Iorga Sep 25 '12 at 7:30

closed as not a real question by J. Steen, N.B., Registered User, Mihai Iorga, JvdBerg Sep 25 '12 at 7:39

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

you are missing the canvas parameter in login url

// Requires Facebook PHP SDK 3.0.1: https://github.com/facebook/php-sdk/
require ('fb/facebook.php');

define('FACEBOOK_APP_ID',"xxxxxxxxx");
define('FACEBOOK_SECRET',"xxxxxxxxxxx");

$user = null;

$facebook = new Facebook(array(
    'appId' => FACEBOOK_APP_ID,
    'secret' => FACEBOOK_SECRET,
    'cookie' => true
));

$user = $facebook->getUser(); // Get the UID of the connected user, or 0 if the Facebook user is not connected.

if($user == 0) {

    /**
     * Get a Login URL for use with redirects. By default, full page redirect is
     * assumed. If you are using the generated URL with a window.open() call in
     * JavaScript, you can pass in display=popup as part of the $params.
     * 
     * The parameters:
     * - redirect_uri: the url to go to after a successful login
     * - scope: comma separated list of requested extended perms
     */

    $login_url = $facebook->getLoginUrl(array('canvas' => 1,'fbconnect' => 0,'scope'=>'publish_stream,user_photos,friends_photos'));

    echo ("<script> top.location.href='".$login_url."'</script>");

}
share|improve this answer
Not working,still redirecting out of facebook and showing in my host url joomla.singlelinelogics.com .. and throwing that fatal error i noted above – Jijo John Sep 25 '12 at 7:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.