使用 mp3 附件发布 feed 时出现问题

发布于 2024-11-06 23:19:58 字数 532 浏览 0 评论 0原文

大家好,我有一个可以在画布和选项卡中使用的应用程序。

我的问题是,在选项卡上,带有附件的提要效果很好,但在画布上,附件不会显示。.

关于如何修复它,有什么想法吗?或者它是否是 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

苏大泽ㄣ 2024-11-13 23:19:58

要在“新方法”中设置艺术家,mp3 的 id3 信息中应包含艺术家信息

To set the artist in the "new method", the mp3 should have the artist info in the id3 info

柠檬心 2024-11-13 23:19:58

我已经使用“源”属性解决了这个问题,显然 facebook 不再使用带有媒体的附件对象。

正确的方法如下:

FB.ui({
  method: 'feed',
  display: 'iframe',
  source: 'http://midias.toingboo.pmovil.com.br/cont_din/fixo/blaving_audio/encNgjLDO73WjIzxRHk43yIxbycPKcU-xLt/2515.mp3',
  name: 'title',
  description: 'description'
});

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:

FB.ui({
  method: 'feed',
  display: 'iframe',
  source: 'http://midias.toingboo.pmovil.com.br/cont_din/fixo/blaving_audio/encNgjLDO73WjIzxRHk43yIxbycPKcU-xLt/2515.mp3',
  name: 'title',
  description: 'description'
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文