嘿所有,我试图使用带有.mp3文件附件的Javascript SDK发布facebook食物,我的代码如下:
用于初始化facebook api:
<script type="text/javascript">
window.fbAsyncInit = function() {
FB.init({
appId : _cfg.fbAppId,
status : false,
cookie : false,
xfbml : true
});
FB.Canvas.setAutoResize();
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
然后我有以下代码发送Feed:
FB.ui({
method: 'feed',
attachment: {
media:[{
'type' : 'music',
'src' : 'http://media.*****.com/files/test.mp3',
'title' : 'this is a test mp3 file',
'artist' : 'test artist',
'album' : 'Test Album'
}]
},
display: 'page'
});
当对话框打开时,它只显示我
不允许输入'音乐'
任何想法如何解决这个问题?我想要的是能够使用mp3文件发布Feed,以便朋友可以在新闻Feed中看到Feed并收听该文件。
感谢。
答案 0 :(得分:1)
music
不是允许的类型。我认为mp3
是:
FB.ui({
method: 'feed',
attachment: {
media:[{
'type' : 'mp3',
'src' : 'http://media.*****.com/files/test.mp3',
'title' : 'this is a test mp3 file',
'artist' : 'test artist',
'album' : 'Test Album'
}]
},
display: 'page'
});