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.

I am using Facebook's code generator here: http://developers.facebook.com/docs/reference/plugins/facepile/

If I use "dark" color scheme, it does not work.

Here's the result: http://chovy.dyndns.org/test/fb.htm

Here's the code generated that does not work:

<div id="fb-root"></div>
<script>(function(d, s, id) {
  var js, fjs = d.getElementsByTagName(s)[0];
  if (d.getElementById(id)) return;
  js = d.createElement(s); js.id = id;
  js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
  fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>

<div class="fb-facepile" data-href="http://www.facebook.com/google" data-max-rows="3" data-width="400" data-colorscheme="dark"></div>
share|improve this question

1 Answer

As said in the instructions: This script uses the app ID of your app. You will need to replace the part where it says &appId=.

example:

js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=127593403996233";

share|improve this answer

Your Answer

 
discard

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

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