In my facebook app, there are two files index.php and write.php which uses this basic code:
require_once('AppInfo.php');
if (substr(AppInfo::getUrl(), 0, 8) != 'https://' && $_SERVER['REMOTE_ADDR'] != '127.0.0.1') {
header('Location: https://'. $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI']);
exit();
}
require_once('utils.php');
require_once('sdk/src/facebook.php');
$facebook = new Facebook(array(
'appId' => AppInfo::appID(),
'secret' => AppInfo::appSecret(),
));
$user_id = $facebook->getUser();
After the index.php is loaded, an ajax request is sent to write.php, which sends queries to Facebook and writes the results onto a text file. write.php uses the same code to initialize the Facebook object.
This works fine when tested locally, but after uploading to Heroku it gives arbitrary results. Either the $user_id is null and the code is unable to go beyond if($user_id) or the $user_id has a value of 0, which raises exceptions later.