喜欢来自js sdk的应用程序,如按钮

时间:2012-05-22 10:03:42

标签: facebook-javascript-sdk

我正在构建一个应用程序,您可以通过框架内的类似按钮来欣赏应用程序本身。所以,我加载了js sdk:

<script>
  window.fbAsyncInit = function() {
    FB.init({
       appId      : '<?php echo $appid; ?>', // App ID
       status     : true, 
       cookie     : true,
       xfbml      : true,
       oauth      : true,
    });
    FB.Canvas.setSize()
    checkIfLoaded();
    // Additional initialization code here
  };

  // Load the SDK Asynchronously
  (function(d){
     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.js";
     ref.parentNode.insertBefore(js, ref);
   }(document));
</script>

然后我在html中写了一个类似的按钮:

<div id="page" class="page-01">
    <div id="content">
        <h1><a href="#"><img src="img/skin/logo.png" alt=""/></a></h1>
        <div class="block-01">
            <div id="fb-root"></div>
            <div class="fb-like" data-send="false" data-layout="button_count" data-width="105" data-show-faces="false"></div>
        </div>
    </div>
    <div id="footer">

    </div>

</div>

我希望通过此按钮可以使用我的应用程序,但它就像托管我的应用程序的网址一样。

我是js sdk的新手,有没有办法做这种事情?

2 个答案:

答案 0 :(得分:0)

没有“喜欢应用程序”这样的东西,实际上你唯一可以绑定你的Like按钮的是URL(可能代表OpenGraph对象)。

你不能使用Like Button喜欢任何内部Facebook对象,如页面,应用程序,用户等。

如果您谈到喜欢与特定应用程序相关联的页面,您应该使用Like Box social plugin(旨在与Pages一起使用)。

答案 1 :(得分:0)

您需要指定与data-href =“url to like”

相同的网址