i'm trying to publish ogg audio files to the stream using javascript api and FB.ui, but i can't figure out how to do it. Here is my call to FB.ui :
FB.ui(
{
method: 'stream.publish',
message: '',
attachment: {
name: artist + ' - ' + song,
"media" : [{
"type":"mp3" ,
"src" : file,
"artist" : artist,
"title" : song
}]
}
},
function(response) {
}
);
With media type set as "mp3" the file just doesn't play, and after lot of looking around i can't figure out another audio type to specify. Is it possible to share ogg files ? Thanks in advance!