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.

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!

share|improve this question
Do you receive any error messages? Do you have the latest version of the php-sdk? – TommyBs Dec 24 '12 at 10:36
When I click on the button nothing happen. I have the latest SDK. – Attila Dec 24 '12 at 10:54
Check out this: developers.facebook.com/roadmap/#january-2013 – Shadowfax Dec 25 '12 at 5:40

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.