Я не могу правильно опубликовать в Stream Publish с помощью приложения iframe facebook - PullRequest
0 голосов
/ 17 ноября 2011

У меня есть следующий код:

`$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 не появляется.В чем проблема?

1 Ответ

0 голосов
/ 18 ноября 2011
$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);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...