Regards,
My goal is that a user on facebook share audio. That audio is in wav format on my own server.
Now I'm using the code below, but when I click on the link that contains my function, I get the dialogue alone but not the audio that is being shared.
When posting only I get the message that I put.
//Link is the path of my wav file in my server.
function shareAudio(link){
FB.init({
appId:"123456789101112",
cookie:true,
status:true,
xfbml:true
});
FB.getLoginStatus(function(response) {
if(response.authResponse) {
FB.ui({
method: 'feed',
link: link,
attachment: {
media:[{
'type' : 'wav',
'src' : link,
'title' : 'Share wav file',
'artist' : 'test artist',
'album' : 'Test Album'
}],
display: 'dialog'
});
}
});
}
In my HTML i put the following meta tag:
<meta property="og:audio:type" content="application/wav"></meta>
<script type="text/javascript" src="https://connect.facebook.net/en_US/all.js"></script>
Another way I've tried is using the share.php. But I find that I put audio parameters.
function shareAudio(link){
window.open ("http://www.facebook.com/share.php?{What parameters?}",
"WhatEver","menubar=1,resizable=1,width=600,height=200");
}
What is what I'm doing wrong so I can share reconosca or not the audio? Is there another way?
Thanks in advance.