Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Do you have a oauth token and are you sure it's valid? You can test it by pointing your browser to graph.facebook.com/me/feed?access_token=... – Claude Vedovini Sep 11 '10 at 9:27
And, by the way, you cannot post HTML to the wall, only plain text. – Claude Vedovini Sep 11 '10 at 9:29
I need to post logo image with description i tired below code but not working $attachment = array('message' => 'some meesgae', 'name' => 'This is my demo Facebook application!', 'caption' => "Caption of the Post", 'link' => 'mylink.com';, 'description' => 'this is a description', 'picture' => 'mysite.com/pic.gif';, 'actions' => array(array('name' => 'Get Search', 'link' => 'google.com')) ); $result = $facebook->api('/me/feed/','post',$attachment); – Elankeeran Sep 11 '10 at 18:30

closed as too localized by Andrew Barber, Jack, Sankar Ganesh, X.L.Ant, Graviton Feb 28 at 3:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You cannot post HTML in a Facebook wall post.

share|improve this answer
Claude Vedovini actually posted that as a comment the day after this question was posted. – Andrew Barber Feb 26 at 4:37
@AndrewBarber Yeah, not sure why this post was on top of the recent posts. Figured it might as well have an actual answer. – ceejayoz Feb 26 at 4:39
1  
Good point. This sort of thing is a little weird; it also looks like the OP had another problem with their code. I actually voted to close the whole thing as "Too Localized", but... eh! :) – Andrew Barber Feb 26 at 4:41

try this post publish to wall

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.