How to post HTML content in facebook wall using facebook api in php
Posted
by
Elankeeran
on Stack Overflow
See other posts from Stack Overflow
or by Elankeeran
Published on 2010-09-10T21:10:20Z
Indexed on
2011/01/08
5:54 UTC
Read the original article
Hit count: 353
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 = $facebook->api('/me/feed/','post',array( 'message' => 'This is my demo Facebook application!' . $htmlStr));
but not working and getting below error
OAuthException: (#1) An unknown error occurred
Any please help me.
© Stack Overflow or respective owner