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>");
}