2012-10-20 32 views
0
require_once("externals/facebook-sdk/src/facebook.php"); 
$config = array(); 
     $config['appId'] = 'XXXXXXXXXXXXXXXXXXXXXXXX'; 
     $config['secret'] = 'XXXXXXXXXXXXXXXXXXXXXXXXX'; $config['fileUpload'] =true; 

     $facebook = new Facebook($config) 

; 我可以發佈視頻像我怎樣才能張貼使用Facebook的SDK與PHP的音頻?

$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']) 
); 

我如何可以做同樣的聲音?我應該只是將視頻更改爲音頻並提供該音頻的網址?

回答

1

好吧。根據日期,facebook不支持音頻文件(根據最好的知識)。因此你將無法做你想做的事。你可以做的是,將它們上傳到第三方服務器並共享鏈接。或者使用Spotify等第三方應用。

希望這會有所幫助。

相關問題