This code worked perfectly long time. I think the Facebook changed something and it stopped working.
What is the problem with it?
There are 15 images and a random generator. It uploads the photo to user's album and post to the wall.
<?php
ob_start();
require "facebook.php";
$signed_request = $_REQUEST["signed_request"];
list($encoded_sig, $payload) = explode('.', $signed_request, 2);
$data = json_decode(base64_decode(strtr($payload, '-_', '+/')), true);
$has_liked = $data["page"]["liked"];
$facebook = new Facebook(array(
'appId' => 'MY id',
'secret' => 'MY secret',
'cookie' => true,
'fileUpload' => true));
if($_POST['post_img_to_wall'] && $_POST['access_token']){
$current_access_token = $_POST['access_token'];
try {
$images=array('1.jpg','2.jpg','3.jpg','4.jpg', '5.jpg', '6.jpg', '7.jpg', '8.jpg', '9.jpg', '10.jpg', '11.jpg', '12.jpg', '13.jpg', '14.jpg', '15.jpg');
$img=$images[mt_rand(0,count($images)-1)];
$caption = "MY caption";
$facebook->api("/me/photos", "post", array('message' =>$caption, 'source' => '@'.$img, "access_token"=>$current_access_token));
echo "You can see the photo on your wall!";
} catch (FacebookApiException $e) {
error_log($e);
}
exit();
}
if($has_liked){
if (!$data["user_id"]) {
$app_id = "MY id";
$redirect_url = urlencode("http://www.facebook.com/pagename/....");
$scope = "publish_stream";
$auth_url = "http://www.facebook.com/dialog/oauth?client_id=" . $app_id . "&redirect_uri=" . $redirect_url . "&scope=" . $scope;
echo("<script> top.location.href='" . $auth_url . "'</script>");
} else {
$access_token = $facebook->getAccessToken();
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>My title</title>
</head>
<body>
<body background="bg.jpg">
<b><i><h2>Fontos:</h2></i></b>
<font face="Arial">Some text here...</font>
<form method="post" action="index.php">
<input type="hidden" name="access_token" value="<?php echo $access_token; ?>" />
<div align="center"><input type="submit" name="post_img_to_wall" value="I want to see my image" /></div>
</form>
</body>
</html>
<?php
}
} else {
?>
<div align="center"><img src="start.jpg"/></div>
<?php
}
?>
Thanks for your help!