使用 mp3 附件发布 feed 时出现问题
大家好,我有一个可以在画布和选项卡中使用的应用程序。
我的问题是,在选项卡上,带有附件的提要效果很好,但在画布上,附件不会显示。.
关于如何修复它,有什么想法吗?或者它是否是 Javascript SDK 中的已知错误?
这是我的 javascript 代码:
FB.ui({
method: 'feed',
display: 'iframe',
attachment : {
media : [{
type : 'mp3',
src : 'http://midias.toingboo.pmovil.com.br/cont_din/fixo/blaving_audio/encNgjLDO73WjIzxRHk43yIxbycPKcU-xLt/2515.mp3',
title : 'title',
artist : 'artist',
album : 'Blaving.com'
}]
}
});
当然我首先执行 FB.login()...
Hey all, i have an app that works both in canvas and tab.
my problem is that on the tab the feed with the attachment works great but on the canvas the attachment wont show up..
any ideas on how can i fix it? or if its a known bug in the Javascript SDK?
this is my javascript code:
FB.ui({
method: 'feed',
display: 'iframe',
attachment : {
media : [{
type : 'mp3',
src : 'http://midias.toingboo.pmovil.com.br/cont_din/fixo/blaving_audio/encNgjLDO73WjIzxRHk43yIxbycPKcU-xLt/2515.mp3',
title : 'title',
artist : 'artist',
album : 'Blaving.com'
}]
}
});
of course i first do a FB.login()...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要在“新方法”中设置艺术家,mp3 的 id3 信息中应包含艺术家信息
To set the artist in the "new method", the mp3 should have the artist info in the id3 info
我已经使用“源”属性解决了这个问题,显然 facebook 不再使用带有媒体的附件对象。
正确的方法如下:
I have solved this using the 'source' attribute, apparently facebook no longer uses the attachment object with media inside.
the correct way to do this is as follow: