我想用faceboo api分享音頻mp3文件。我需要與我的朋友和我的牆上分享。 一旦在臉譜上,我需要能夠播放音頻文件,當我點擊它。如何在Facebook上分享音頻mp3文件?
$link = "link to some mp3 file";
function streamPublish(name){
FB.ui({
method: 'stream.share',
attachment: {
name:'Louis Dousset viens de t\'envoyer un message grâce à la Sweet Machine',
caption:'Caption',
description:"Desc",
"media": [{
"type": "mp3",
"src": $link,
"title": "",
"artist": "",
"album": "",
"href": ""
}]
},
display: 'page'
});
}
我正在使用上述功能。 我不能得到MP3網址; 我該如何解決這個問題?