Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is maximum message length for Facebook wall post

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

like image 665
Nikhil D Avatar asked Jul 31 '12 08:07

Nikhil D


1 Answers

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
  }
}
like image 85
Rafael Oliveira Avatar answered Oct 16 '22 12:10

Rafael Oliveira