流项目的长度

时间:2011-10-29 10:52:03

标签: javascript facebook facebook-graph-api facebook-php-sdk facebook-javascript-sdk

关于以下代码,是否有人知道名称,标题和说明的最大字符长度?

似乎无法在文档中找到任何信息。

FB.ui(
  {
    method: 'feed',
    attachment: {
      name: 'JSSDK',
      caption: 'The Facebook JavaScript SDK',
      description: (
        'A small JavaScript library that allows you to harness ' +
        'the power of Facebook, bringing the user\'s identity, ' +
        'social graph and distribution power to your site.'
      ),
      href: 'http://fbrell.com/'
    },
    action_links: [
      { text: 'fbrell', href: 'http://fbrell.com/' }
    ]
  },
  function(response) {
    if (response && response.post_id) {
      alert('Post was published.');
    } else {
      alert('Post was not published.');
    }
  }
);

由于

0 个答案:

没有答案