I have Facebook application which post picture on user's wall. On this picture are writen user's Name
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
$user_profile = $facebook->api('/me');– user2055113 Mar 3 at 16:07