我目前正在構建一個應用程序,您可以從框架內的某個按鈕像應用程序本身一樣。所以,我加載JS SDK:像js sdk like按鈕的應用程序
<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的新手,有沒有辦法做這種事情?
謝謝你的提示,我一直在尋找類似的頁面。像盒子似乎做的工作,但不容易定製,我需要在一個小工具提示像計數,像原來的按鈕計數。 – SupFrig
有一些我仍然不明白,我的應用程序檢查在PHP如果($ signed ['page'] ['liked'] == 1){其中$ signed是被解析的signed_request顯示主屏幕,並且如果用戶不喜歡,可以使用類似按鈕的屏幕。即使js像頁面一樣按鈕,屏幕也不會改變。 – SupFrig
'$ signed ['page'] ['liked''只應要求填充,一旦用戶喜歡該頁面,您將需要重新加載選項卡應用程序。 –