require_once("externals/facebook-sdk/src/facebook.php");
$config = array();
$config['appId'] = 'XXXXXXXXXXXXXXXXXXXXXXXX';
$config['secret'] = 'XXXXXXXXXXXXXXXXXXXXXXXXX'; $config['fileUpload'] =true;
$facebook = new Facebook($config)
; のような動画を投稿できます
$facebook->api('/me/feed', 'post', array(
'message' => $message,
'link' => 'http://www.test.org/videos/'.$video['video_id'].'/'.$_POST['title'],
'type'=>'video',
'source'=>$video['embed'],
'picture'=> $pic,
'name'=> $_POST['title'],
'caption'=>'this is a test' ,
'description'=> $_POST['desc'])
);
オーディオに対して同じことを行うにはどうすればよいですか? ビデオをオーディオに変更して、そのオーディオの URL を提供しますか?