What is maximum message length for Facebook wall post

…衆ロ難τιáo~ 提交于 2019-12-22 06:37:45

问题


I am sharing message from my site on facebook wall post. What should be the max length of that message ?


回答1:


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
  }
}



回答2:


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?



来源:https://stackoverflow.com/questions/11735947/what-is-maximum-message-length-for-facebook-wall-post

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