Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
Or facebook only accept .mp3 file? When user share audio, in your wall show Embed Playable Audio? – user6964 Oct 31 '12 at 19:43

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.