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: (
Anyone please help me.
source
share