im trying to post to the wall of facebook with mp3 attachment doing the following:
var attachment = new JsonObject();
attachment.Add("message");
attachment.Add("name", "Core4");
attachment.Add("href", "www.google.com");
attachment.Add("description", description);
var media = new JsonObject();
media.Add("type", "mp3");
media.Add("src", "http://www.somesite.com/Ride.mp3");
media.Add("href", "http://www.google.com");
var mediaArray = new JsonArray();
mediaArray.Add(media);
attachment.Add("media", mediaArray);
var result = _fbClient.Post("/me/feed", attachment);
post get posted but the mp3 player doesnt show! i tried everything, any one have any idea why this is happening ?