Can somebody please tell me why the following code is not giving me the form to post message on wall? It just redirects to the $homeurl !
CONFIG.SYS
<?php
require_once("facebook/src/facebook.php"); //include facebook SDK
######### edit details ##########
$appId = '****************************'; //Facebook App ID
$appSecret = '**********************************'; // Facebook App Secret
$return_url = 'http://www.landshoppe.com/process.php'; //return url (url to script)
$homeurl = 'http://www.landshoppe.com/'; //return to home
$fbPermissions = 'publish_stream,manage_pages'; //Required facebook permissions
##################################
//Call Facebook API
$facebook = new facebook(array( 'appId' => $appId, 'secret' => $appSecret));
$fbuser = $facebook->getUser();
?>
My AppId and AppSecret are correct. Still, $fbuser does not seem to connect. Echoing $fbuser gives 0. And the index.php facebook post form redirects to home url since $fbuser does not connect I presume.. what should be the problem ?