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.

I have Facebook application which post picture on user's wall. On this picture are writen user's Name enter image description here

This app after use dislay photo with writen user name on It, but didn't post on user's wall. You can test It here: http://www.facebook.com/JuokoEra/app_537787189575080

<?php
require_once('images/Facebook.php');
  $facebook = new Facebook(array(
    'appId'  => '537787189575080',
    'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
  ));
$user = $facebook->getUser();
$user_profile = $facebook->api('/me');//////////////////// IF I DELETE THESE LINES
$name = "".$user_profile['name']."";////////////////////// APP POST PHOTO ON USER'S WALL 
header('Content-Type: image/jpeg');
$im = imagecreatefromjpeg('http://juokoera.lt/test/1.jpg');
$white = imagecolorallocate($im, 255, 255, 255);
$grey = imagecolorallocate($im, 128, 128, 128);
$black = imagecolorallocate($im, 0, 0, 0);
$blue = imagecolorallocate($im, 3, 110, 208);
imagefilledrectangle($im, 0, 0, 550, 65, $black);
imagefilledrectangle($im, 4, 4, 546, 61, $blue);
$text = 'atostogaus:';
$font = "trajanprobol.ttf";
imagettftext($im, 20, 0, 180, 55, $white, $font, $text);
imagettftext($im, 20, 0, 120, 28, $white, $font, $name);
imagejpeg($im);
imagedestroy($im); 
?>

If I delete these 2 lines, photo normally are posted on user's wall just without user name.

$user_profile = $facebook->api('/me');
$name = "".$user_profile['name']."";

What's wrong? Do you have any ideas? What permissions are needed? Maybe I forgot something? user_about_me user_photos friends_photos publish_actions
publish_stream offline_access photo_upload publish_checkins

share|improve this question
Is the application in sandbox mode? – Lix Mar 3 at 15:54
Sandbox mode was disabled, now enabled - but the same, something wrong with $user_profile = $facebook->api('/me'); – user2055113 Mar 3 at 16:07

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.