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.
<html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US" xmlns:fb="https://www.facebook.com/2008/fbml"> 
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# music: http://ogp.me/ns/fb/music#">
<meta property="fb:app_id"        content="###########" /> 
<meta property="og:type"           content="music.song" /> 
 <meta property="og:url"            content="http://mymediaupload.com/fbindex1.php" />
 <meta property="og:locale"        content="en_US" />
 <meta property="og:title"           content="MyMediaUpload" />
 <meta property="og:description" content="MMU" /> 
 <meta property="og:image"        content="http://www.mymediaupload.com/v4/img/ErrorBG.png" />
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
</head>
<body>
<div class="fb-login-button" data-show-faces="true" data-width="200" data-max-rows="1" scope="publish_actions"></div>

<input type="button" value="Read" class="openGraphButton" action="song" page="http://mymediaupload.com/fbindex1.php" />
<script type="text/javascript">

$(document).ready(function()
{
    $('.openGraphButton').click(function(){
            var action = $(this).attr('action');
            var page = $(this).attr('page');
            postAction( action, 'article', page);
        });
});

function postAction( action, object_type, object_url ){
    FB.api('/me/music.' + action + '?' + object_type + '=' + object_url, 'post', function(response){
         var msg = 'Error occured';
         if (!response || response.error)
        {
            if (response.error) {
                msg += "\n\nType: "+response.error.type+"\n\nMessage: "+response.error.message;
            }
            alert(msg);
        } 
        else
        {
            alert('Post was successful! Action ID: ' + response.id);
        }
    });
}
</script>

<div id="fb-root"></div>
<script>
  window.fbAsyncInit = function() {
    FB.init({
      appId      : '###########', // App ID
      status     : true, // check login status
      cookie     : true, // enable cookies to allow the server to access the session
      xfbml      : true  // parse XFBML
    });

    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
     js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
</script>
</body>
</html>

I have used facebooks own actions.. I have searched and searched! I fixed all my errors apart from this last one, i get the error:

Error occured

Type: GraphMethodException

Message: Unsupported post request.

Please help! I can't find an answer!

share|improve this question
Your action name is music.song …? – CBroe Dec 12 '12 at 6:50
why is this wrong? I used the facebook tutorial on the developers page, but I also learned if you use the inbuilt actions you have to do something like that- its so confusing for me.. – Lee McGowan Dec 12 '12 at 13:57
I have fixed the above problem now, I just want to know when a user listens to a song to automatically submit to facebook without clicking button? – Lee McGowan Dec 12 '12 at 15:14
@lee-mcgowan how did you fix that? – Mahmudur Mar 26 at 0:57

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.