pckabeer
pckabeer

Reputation: 694

does facebook post api fied description support html

Will the description field support html tags

$facebook->api("/me/feed", "post", array(
    message => $des,
    picture => $img,
    link => $link,
    caption => $title ,
    description =>$desc
));

I would looking to have description as

$desc="hai to <strong>All</strong><br>I am on the nextline";

Thanks in advance

Upvotes: 0

Views: 1571

Answers (1)

complex857
complex857

Reputation: 20753

No, facebook doesn't interpret formatting in the description field (simply shows as them you send it), and you can't place newlines. If you want to add extra links to the message you can use the properties field of the Post object.

Upvotes: 1

Related Questions