我无法使用 iframe Facebook 应用程序通过 Stream 发布正确发布



我有以下代码:

`$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文件不会出现。有什么问题吗?

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

相关内容

最新更新