2013-04-02 2 views
2

처럼 내가 developer`s 사이트에서 생성 된 버튼과 같은 페이스 북의 추가,하지만 문제는 내가 같은 버튼 카운터 변경 내 URL을 변경할 때 때페이스 북은 카운터

url : http://localhost/ci/ --> 7 likes 
url : http://localhost/ci/fr/--> 0 likes 

SDK :

https://developers.facebook.com/docs/reference/plugins/like/에서 버튼 초기화 같은
window.fbAsyncInit = function() { 
     // init the FB JS SDK 
     FB.init({ 
      appId  : 'xxx', // App ID from the App Dashboard 
      channelUrl : 'http://localhost/ci', // Channel File for x-domain communication 
      status  : true, // check the login status upon init? 
      cookie  : true, // set sessions cookies to allow your server to access the session? 
      xfbml  : true // parse XFBML tags on this page? 
     }); 

     // Additional initialization code such as adding Event Listeners goes here 
     }; 

     // Load the SDK's source Asynchronously 
     // Note that the debug version is being actively developed and might 
     // contain some type checks that are overly strict. 
     // Please report such bugs using the bugs tool. 
     (function(d, debug){ 
     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" + (debug ? "/debug" : "") + ".js"; 
     ref.parentNode.insertBefore(js, ref); 
     }(document, /*debug*/ false)); 

:

<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&appId=xxx"; 
     fjs.parentNode.insertBefore(js, fjs); 
    }(document, 'script', 'facebook-jssdk')); 
</script> 

내가 같은 가질 수있는 방법 각 페이지의 카운터?

답변

0

당신은 HTML 태그를 시도하지 않았습니까?

<div class="fb-like" data-href="http://URL_SAME" data-send="true" data-width="450" data-show-faces="true"></div> 

데이터 -href에 같은 URL이 있습니까 ???