I have an facebook application (viral) that when the user must press like to my facebook fan page, then runs the application.
After accepting terms etc an image appears for thanks and i keep email and token in my db. 2 months now my application suddenly is not working correctly, When the user press like to my fan page and accept the terms of application etc the next step (Thank you image) is not appearing anymore and the page is refreshing all the time.
my facebook app: https://www.facebook.com/GoldenCoupon/app_369831243093523
Did facebook change anything? Must i do something in application settings inside facebook?
Or how can i use this code that i found so when user press like to my fan page just a text with an image post at his wall?
<?php
$appID = 'XXX';
$appSecret = 'XXX';
$canvasPage = 'http://apps.facebook.com/myapp';
$canvasUrl = 'http://www.mydomain.com/apps/myapp';
//facebook application
//set facebook application id, secret key and api key here
$fbconfig['appid' ] = "xxx";
$fbconfig['api' ] = "";
$fbconfig['secret'] = "xxx";
//set application urls here
$fbconfig['baseUrl'] = "http://www.mydomain.com/apps/myapp";
$fbconfig['appBaseUrl'] = "http://apps.facebook.com/myapp";
$uid = null; //facebook user id
try{
include_once "facebook.php";
}
catch(Exception $o){
echo '<pre>';
print_r($o);
echo '</pre>';
}
// Create our Application instance.
$facebook = new Facebook(array(
'appId' => $fbconfig['appid'],
'secret' => $fbconfig['secret'],
'cookie' => true,
));
//Facebook Authentication part
$session = $facebook->getSession();
$loginUrl = $facebook->getLoginUrl(
array(
'canvas' => 1,
'fbconnect' => 0,
'req_perms' => 'email,publish_stream,status_update,user_birthday,user_location,user_work_history'
)
);
$fbme = null;
if (!$session) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
}
else {
try {
$uid = $facebook->getUser();
$fbme = $facebook->api('/me');
} catch (FacebookApiException $e) {
echo "<script type='text/javascript'>top.location.href = '$loginUrl';</script>";
exit;
}
}
function d($d){
echo '<pre>';
print_r($d);
echo '</pre>';
}
$dbname = "xxx"; //dbname
$dbhost = "xxx";
$dbuser = "xxx";
$dbpass = "xxx";
$conn = mysql_connect($dbhost, $dbuser, $dbpass);
mysql_select_db($dbname, $conn);
mysql_query("SET NAMES utf8");
mysql_query("SET character_set_results='utf8'");
function dbPrepare($str){
$str = mysql_real_escape_string($str);
return $str;
}
?>
Thank you Guys!