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.
 <script type="text/javascript" src="http://connect.facebook.net/en_US/all.js"></script>

<div id="fb-root"></div>
    <script type="text/javascript">
window.fbAsyncInit = function() {
        FB.init({
            appId:XXXXX, cookie: true, status: true,  xfbml: true 
        });
};

  (function() {
    var e = document.createElement('script');
    e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
    e.async = true;
    document.getElementById('fb-root').appendChild(e);
  }());
</script>
<script>
var profilePicsDiv = document.getElementById('profile_pics');
FB.getLoginStatus(function(response) {
  if (response.status != 'connected') {
    profilePicsDiv.innerHTML = '<em>You are not connected</em>';
    return;
  }

  FB.api({ method: 'friends.get' }, function(result) {
    Log.info('friends.get response', result);
    var markup = '';
    var numFriends = result ? Math.min(5, result.length) : 0;
    if (numFriends > 0) {
      for (var i=0; i<numFriends; i++) {
        markup += (
          '<fb:profile-pic size="square" ' +
                          'uid="' + result[i] + '" ' +
                          'facebook-logo="true"' +
          '></fb:profile-pic>'
        );
      }
    }
    profilePicsDiv.innerHTML = markup;
    FB.XFBML.parse(profilePicsDiv);
  });
});
</script>
share|improve this question

closed as not a real question by Brad, Ben Zotto, Wesley Murch, BK., Graviton Sep 12 '11 at 4:59

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Your div is lacking a <:

<div id="profile_pics"></div>
share|improve this answer
its not error , just bad copy - paste, code is work on java script test console but on my cite this is not work, I found solution with php but javascript fail. – srdjan Sep 15 '11 at 21:58

Not the answer you're looking for? Browse other questions tagged or ask your own question.