im trying to use the Test Console in this page to post something on my wall with a swf attachment so im filling the following in the attachment:
{"media": [{
"type": "flash",
"swfsrc": "http://www.alsacreations.fr/flashdir/dewplayer.swf?mp3=http://storage.musiclife.kz/2011-07/47449_3b012dcc460023b8be23f7af451e173f.mp3",
"imgsrc": "http://bikeweb.com/files/images/ride_it_forever_000113-1313.jpg",
"width": "80",
"height": "60",
"expanded_width": "160",
"expanded_height": "120"
}]}
it posts and everything but when i click on the attachment it open a different window with the swf when i want it to be played inline just like youtube and several sites that i saw doing this, im not sure what im doing wrong ? any idea ?
also i would like to acommplish this with Facebook C# SDK, what do i need to change in the following code:
_fbClient = new FacebookClient(accessToken);
var postparameters = new Dictionary<string, object>();
postparameters["message"] = "Test";
postparameters["name"] = "This is a name";
var result = _fbClient.Post("/me/feed", postparameters);