How to post HTML content in facebook wall using facebook api in php
- by Elankeeran
How to post HTML content in facebook wall using facebook api in php
I have used below codes but not working
$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 concatenate the HTML string
$result =…