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 is a rather strange issue.. I am not able to publish a facebook video link on my wall.

The following code works perfectly fine...

$attachment = array(
  'link' => "www.google.com"
);
$publish = $facebook->api('/me/feed', 'post', $attachment);

But the following code doesnt

$attachment = array(
  'link' => "http://www.facebook.com/video/video.php?v=10150238694155484"
);
$publish = $facebook->api('/me/feed', 'post', $attachment);

It doesn't post anything to my wall.

Has anyone seen the same issue?

share|improve this question

2 Answers

up vote 0 down vote accepted

As far as I remember, facebook made the picture parameter required for video links

share|improve this answer
not really.. it works fine for youtube and dailymotion videos.. problem is only with facebook videos.. but yeah there is definitely something related to the picture property.. i gave some dummy value for the picture property and the post went through – contacthima Aug 28 '11 at 19:42
@contacthima maybe it's "required" for urls that have no og:image property. Which is a strange way to enforce requirement – Darhazer Aug 28 '11 at 19:45

Add it into try catch

try{
    $attachment = array(
         'link' => "http://www.facebook.com/video/video.php?v=10150238694155484"
    );
    $publish = $facebook->api('/me/feed', 'post', $attachment);
}
catch (Exception $e){
    echo "<pre>";
    print_r($e);
    echo "</pre>";
}

it will show you all error details needed to resolve your problem

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.