How to post HTML content in facebook wall using facebook api in php

How to post HTML content in facebook wall using facebook api in php

I used the codes below but didn't work

$result = $facebook->api('/me/feed/','post',array( 'message' => '<h1>This is my demo Face book application!</h1>'));

And I used as below code using php to concatenate an HTML string

 $result = $facebook->api('/me/feed/','post',array( 'message' => 'This is my demo Facebook application!' . $htmlStr));

but it doesn’t work and gets lower than the error

OAuthException: (#1) An unknown error occurred

Anyone please help me.

+3
source share
1 answer

You cannot post an HTML message to Facebook on the wall.

0
source

Source: https://habr.com/ru/post/1764233/


All Articles