开发者

integrated facebook facepile need

开发者 https://www.devze.com 2023-01-03 06:50 出处:网络
I am working on project, it needs facepile (plugin of facebook) in开发者_开发问答 index page, how can I do it?you need to get an appID from facebook developers site. (http://developers.facebook.com/s

I am working on project, it needs facepile (plugin of facebook) in开发者_开发问答 index page,

how can I do it?


you need to get an appID from facebook developers site. (http://developers.facebook.com/setup/)

then..

<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
  FB.init({appId: 'YOUR APP ID HERE', status: true, cookie: true,
         xfbml: true});
};
(function() {
  var e = document.createElement('script'); e.async = true;
  e.src = document.location.protocol +
    '//connect.facebook.net/en_US/all.js';
  document.getElementById('fb-root').appendChild(e);
}());
</script>

THEN...

place this into your page:

<fb:friendpile width="210"></fb:friendpile>

or whatever feature you need.

try this link for more: http://developers.facebook.com/docs/reference/javascript/


Is this showing the Facepile of a page or the user himself (me)?

I tried your code but it always shows a login frame also if I'm already logged in to Facebook.

My target is to have a list of Fans and posts of a specific page for my website.

0

精彩评论

暂无评论...
验证码 换一张
取 消