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 ?