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

Nik*_*l D 5 sharing facebook-wall facebook-graph-api

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

Raf*_*ira 6

似乎是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
  }
}
Run Code Online (Sandbox Code Playgroud)

字幕:

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

链接:

{
  "error": {
    "message": "(#100) link too long", 
    "type": "OAuthException", 
    "code": 100
  }
}
Run Code Online (Sandbox Code Playgroud)