What is maximum message length for Facebook wall post

馋奶兔 提交于 2019-12-05 10:49:06

It seems it is 63206 chars long.

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

Related to Graph-API, here are the limits known:

Name:

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

Caption:

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

Link:

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

If the message is a status update (that is, you're not including an attachment or an action link), it can contain up to 420 characters. Otherwise, if the post contains an attachment or action link, the message can contain up to 10,000 characters.

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!