2011-11-17 2 views
0

를 사용하여 게시 나는 다음과 같은 코드가 있습니다는 iframe이 페이스 북의 응용 프로그램

`$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);` 

을하지만 내 프로필에 POST를 게시 할 때, 그것은 단지 메시지 "테스트"를 보여줍니다. 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); 
관련 문제