2011-11-17 44 views
0

我有以下代碼:我不能流正確發佈發佈使用iframe的Facebook應用程序

`$attachment = array( 
      'message' => "test", 
      'text' => 'Download', 
      'name' => 'name', 
      'href' => 'http://www.mydomain.com', 
      'description' => 'description!', 
      'media' => array(array(
       'type' => 'mp3', 
       'src' => "http://www.mydomain.com/mp3.mp3", 
       'href' => 'http://www.mydomain.com/', 
       'title' => "title", 
       'artist'=> 'artist', 
       'album'=> 'the album'))); 
      $facebook->api('/me/feed', 'post', $attachment);` 

但是,當我發表這篇文章在我的個人資料,只顯示消息「測試」。 mp3文件沒有出現。問題是什麼?

回答

0
$attachment = array( 
      'message' => "test", 
      'text' => 'Download', 
      'name' => 'name', 
      'href' => 'http://www.mydomain.com', 
      'description' => 'description!', 
      'media' => array(
       'type' => 'mp3', 
       'src' => "http://www.mydomain.com/mp3.mp3", 
       'href' => 'http://www.mydomain.com/', 
       'title' => "title", 
       'artist'=> 'artist', 
       'album'=> 'the album')); 
      $facebook->api('/me/feed', 'post', $attachment); 
相關問題