У меня есть следующий код:
`$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 в моем профиле, он показывает только сообщение «test».Файл mp3 не появляется.В чем проблема?