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.

How to tag friends in photos as we do in status. Below code worked for multiple user add. Now I want to tag them to photos that I am uploading, how can this be done? I want the exact functionality like Facebook status works, where user can tag friends in status that they write

<html>
<head>
    <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>
    <script type="text/javascript" src="http://localhost/magento/jquery/js/jquery.tokeninput.js"></script>

    <link rel="stylesheet" href="http://localhost/magento/jquery/css/token-input.css" type="text/css" />
    <link rel="stylesheet" href="http://localhost/magento/jquery/css/token-input-facebook.css" type="text/css" />
</head>
<?php
$friend_list = file_get_contents('https://graph.facebook.com/me/friends?access_token=Your Fb token');
$friend_data = substr($friend_list,9);
$friend_detail = substr($friend_data,0,-247);
//print_r($friend_detail);
?>

<body>

    <div>
        <input type="text" id="demo-input-facebook-theme" name="blah2" />
        <script type="text/javascript">
        $(document).ready(function() {
            $("#demo-input-facebook-theme").tokenInput([<?php echo $friend_detail;?>], {
                theme: "facebook"
            });
        });
        </script>
    </div>
</body>
</html>
share|improve this question
you want to get tagged photos or tag photos?? – Sankalp Mishra Feb 21 at 12:27
@Sankalp i want to tag photos in multiple friends like how we doing status tagged in friends... – Prashant Feb 21 at 12:36

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.