I'm trying to post on user's wall with embed video. I have created app, i can post with picture, i can change messages,description, however there is a problem to embed video, YT video (which has proper OG meta), with my post. I have spent last day trying different combinations and i stuck
$facebook new Facebook($properData);
$params = array(
'message' => 'Some text message',
'link' => 'http://www.youtube.com/watch?v=kx89UV3cxk4', //the video to embed
'name' => 'Some name',
'caption' => 'Some caption',
'picture' => 'http://img.youtube.com/vi/2raioEC7Hms/default.jpg',
'source' => 'http://www.youtube.com/watch?v=2raioEC7Hms', //the video to embed
'description' => 'Some desc',
'type' => 'video',
'actions' => array(
'name' => 'My app ',
'link' => 'http://apps.facebookcom/mydummyapp'),
'privacy' => array('value' => 'EVERYONE'));
$post = $facebook->api('/me/feed', 'post', $params);