Facebook墙贴的最大消息长度是多少

时间:2012-07-31 08:22:22

标签: facebook-graph-api sharing facebook-wall

我正在Facebook墙上的帖子上分享我网站上的消息。该消息的最大长度应该是多少?

2 个答案:

答案 0 :(得分:5)

似乎是63206个字符长。

http://www.zdnet.com/blog/facebook/facebook-increases-status-update-character-limit-to-63206/5754

与Graph-API相关,以下是已知的限制:

命名

{
  "error": {
    "message": "(#100) name parameter cannot be longer than 1000 characters.", 
    "type": "OAuthException", 
    "code": 100
  }
}

<强>标题

{
  "error": {
    "message": "(#100) caption parameter cannot be longer than 1000 characters.", 
    "type": "OAuthException", 
    "code": 100
  }
}

链接:

{
  "error": {
    "message": "(#100) link too long", 
    "type": "OAuthException", 
    "code": 100
  }
}

答案 1 :(得分:1)

如果邮件是状态更新(即,您没有包含附件或操作链接),则最多可包含420个字符。否则,如果帖子包含附件或操作链接,则邮件最多可包含10,000个字符。

Facebook API: What is the Max length of 'message' on wall?