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.

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 ?

share|improve this question
I don’t see you logging the user in to your app anywhere. – CBroe Nov 5 '12 at 10:38

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.