I know how to post a message etc to Facebook wall, but i wanna post a custom HTML and java-script Facebook wall, and i want that Html/javascript to appear so users can use that from face book without leaving Facebook, lik embedded you-tube videos i have seen this possible...

i use this to post to facebook:

FacebookWebClient client = new FacebookWebClient();

// Post to user's wall
var postparameters = new Dictionary<string, object>();
postparameters["message"] = "Hello world!";
postparameters["name"] = "This is a name";
postparameters["link"] = "http://thisisalink.com;
postparameters["description"] = "This is a description";

var result = client.Post("/me/feed", postparameters);

any one has any idea how to do this ?

maybe something like

postparameters["html"] = "html  or view";

if not possible how do i post swf with flash parameters ?

link|improve this question

68% accept rate
I don't think FB wil let you post script because of security issues. – Shoban Feb 22 at 11:20
feedback

2 Answers

There is no way to post custom HTML or JS code into a Facebook post because of security issues.

But you can still customize a lot of stuff like the link, the image, if you want to add an action link next to "Like, comment" ...

Find a lot more about publish post : http://developers.facebook.com/docs/reference/api/post/

link|improve this answer
feedback

if not possible how do i post swf with flash parameters ?

To post a swf video, you will need to do some work.

First create a page that the swf videos lives on where you can specify og meta tags. Read more here: http://ogp.me/

Then you need to create a post with a link to that page with the og tags. Then use the "link" parameter of the post object to point to the swf file.

link|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 at 21:02
feedback

Your Answer

 
or
required, but never shown

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