0

大家好,我正在尝试使用带有 .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>

然后我有以下代码来发送提要:

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 文件的提要,以便朋友可以在新闻提要中看到提要并收听该文件。

谢谢。

4

1 回答 1

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'
});
于 2011-04-14T15:25:23.957 回答