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 make code that work! But this is a small problem. Image posted on wall is very small. Code is uploading photo in album and then posting an info to the wall. But image that is posted on wall is too small. When you open a gallery, open created album and click Share photo and select wall then on wall appears BIG PHOTO. So, how to post BIG photo on wall using PHP SDK??? Please help me. I'm learning for tomorrow test i please modificate the code for me. I don't have much time.

function publish($text, $data,$image1,$file1) // publikuje na Tablicy
{
$facebook = new Facebook(array(
 'appId'  => '225192487556449',
    'secret' => '8546fb31fa6f00aa2068b04b65544353',
'access_token' => $data['token']
));

$message = 'Check out that!';


$attachment =  array(
        'access_token' => $access_token,
        'message' => $text,
        'name' => "",
        'link' => "@".$file1,
        'description' => "Tak może wyglądać mój nagrobek :(",
        'picture'=> $image1,
        );

$facebook->setFileUploadSupport('http://www.szymad.pl/facebook');
        $response = $facebook->api(
          '/me/photos/',
          'post',
          array(
            'message' => $text,
            'source' => '@'.$file1 // @-sign must be the first character
          )
        );




$wynik = $facebook->api('/me/feed', 'POST', $attachment);
//$wynik = json_decode($wynik);
if($wynik['error'])
echo $wynik['error']['type'].': '.$wynik['error']['message'];
else
echo "<br />Wpis został opublikowany!";
}
share|improve this question
Try to upload your photo under the Wall Photos Album. Explained [here][1] [1]: stackoverflow.com/questions/8424013/… – Tolga Arican Jan 2 '12 at 10:57

1 Answer

$facebook->setFileUploadSupport(true);
        $response = $facebook->api(
          '/me/photos/',
          'post',
          array(
            'message' => $text,
            'source' => '@'.realpath($file1) // @-sign must be the first character
          )
        );
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.