Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

facebook api FB.ui Feed Dialog description max length

What is the maximum length of characters may be in the "description" in FB.ui

var obj = {

          description: 'Max lenght???.'
        };
like image 565
Evgeniy Kozlov Avatar asked Dec 20 '22 09:12

Evgeniy Kozlov


1 Answers

I have tested and documented it today. Please find below for the fb.ui feed dialog:

a) the max lenght of the first line, assuming that the line consists of multiple words. long words are truncated much quicker.

b) the total length that is never truncated in the dialog.

Listing:

  • Field Name (title): first line: 50c, total length: 75c.
  • Caption: first line: 50c, total length: 75c.
  • Description: first line: 50c, total length: 512c (possibly more, but hey who needs more than 512 characters).

Bonus:

  • Picture dimensions: 90x90 pixels. It is recommended to refer to an image with 2x 3x that resolution for optimal display but remember it must have squared dimensions.
like image 62
Rolf Avatar answered Feb 01 '23 12:02

Rolf