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.
    <?php
    if($_GET['id'])
    {
    include("connectvars.php");
    $id = mysql_real_escape_string($_GET['id']);
    $do = mysql_query("SELECT * FROM music WHERE musicid = '".$id."' LIMIT 0,1") or die(mysql_error());
    $m = mysql_fetch_array($do);
    ?>

    <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# mymediaupload: 
    http://ogp.me/ns/apps/mymediaupload#">
    <title><?php echo $m['musictitle']." by ".$m['musicartist']; ?></title>
    <meta property="fb:app_id" content="########" /> 
    <meta property="og:type" content="mymediaupload:song" /> 
    <meta property="og:title" content="<?php echo $m['musictitle']." - ".$m['musicartist']; ?>" /> 
    <meta property="og:image" content="<?php echo $m['musicalbumart']; ?>" /> 
    <meta property="og:description" content="<?php echo $m['musictitle']." by ".$m['musicartist']." from album ".$m['musicalbum']; ?>" /> 
    <meta property="og:url" content="http://mymediaupload.com/v4/fbindex.php?id=<?php echo $id; ?>">
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
    <script type="text/javascript">

    function postSong()
    {
    FB.api(
    '/me/mymediaupload:listen_to',
    'post',
    { song: 'http://mymediaupload.com/v4/fbindex.php?id=<?php echo $id; ?>' },
    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>
    </head>

    <body>
    <div id="fb-root"></div>
    <script>

    window.fbAsyncInit = function() {
    FB.init({
    appId  : '######',
    status : true,
    cookie : true,
    xfbml  : true,
    });

    FB.Event.subscribe('auth.login', function(response) {
    alert('logged in');
    });

    FB.Event.subscribe('auth.logout', function(response) {
    alert('logged out');
    });     
    };

    function GetFBLoginStatus() {
    FB.getLoginStatus( function(response) {
    console.log(response);
    if (response.status === 'connected') {
    var accessToken = response.authResponse.accessToken;
    alert(accessToken);
    } else if (response.status === 'not_authorized') {
    //login function
    alert('login first');
    } else {
    //login function
    alert('login first');
    }
    }, true);
    }

    //Load the SDK Asynchronous
    (function(d) {
    var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
    if (d.getElementById(id)) {return;}
    js = d.createElement('script'); js.id = id; js.async = true;
    js.src = "//connect.facebook.net/en_US/all.js";
    ref.parentNode.insertBefore(js, ref);
    } (document));

    </script>
    <script src="//connect.facebook.net/en_US/all.js"></script>

    <?php
    if($_GET['redir']=="")
    {
    echo "Redirecting..";
    echo "<script>top.window.location = \"http://www.mymediaupload.com/v4/index.php?songid=".$id."\";</script>";
    }
    else
    {

    echo "Submitting Post Data of song (".$m['musictitle'].")";
    echo "<form><input type='button' id='but1' value='Post song ".$m['musictitle']."' onclick='postSong()' /><a href='#' onclick='GetFBLoginStatus()'>Get Auth Code</a></form>";
    echo "<script>$(document).ready(function(){ postSong(); });</script>";
    }
    ?>

    <br>
    </body>
    </html>

    <?php
    }
    ?>

When a user listens to a song I want the function to auto send the activity to facebook without having to click the button, if I click the button manually it works.. But when the page is loading the function it doesn't work

share|improve this question

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.