gpt4 book ai didi

javascript - 通过 Javascript 连接到 Facebook API 时如何重新加载/刷新类似 facebook 的按钮

转载 作者:行者123 更新时间:2023-11-30 05:59:06 25 4
gpt4 key购买 nike

我正在使用 JS API 在我的网站中连接到 facebook。这需要单击一个按钮,用户个人资料信息等将通过 javascript 加载。

我的问题是我的页面中有一个类似 FB 的按钮:

 <div id="fb-like" style="position:absolute; left:340px; top:80px;">
<fb:like href="http://www.facebook.com/xxxxxx" send="true" width="450" show_faces="false" colorscheme="dark"></fb:like>
</div>

但是当用户信息被引入时,点赞按钮不显示我已登录。为了看到我已登录,我需要刷新页面然后它说我喜欢它以及我的哪些 friend 喜欢等等。

有没有办法在javascript登录完成后刷新点赞按钮?

谢谢:)

最佳答案

您可以通过使用 javascript 编辑 DOM 来刷新点赞按钮,对登录事件作出 react 。

这是我的做法。

        <div id="fblike" style="position:absolute; left:340px; top:80px;"></div> 
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : '135669679827333',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
//channelUrl : 'https://anotherfeed.com/emo/channel.html', // channel.html file
oauth : true // enable OAuth 2.0
});
function onlogin(){
var loginb=document.getElementById('fblike');
loginb.innerHTML='';
loginb.innerHTML='<div id="fb-like"><fb:like
href="http://www.facebook.com/xxxxxx" send="true" width="450"
show_faces="false" colorscheme="dark"></fb:like></div>';
FB.XFBML.parse(loginb);
};

FB.Event.subscribe('auth.login', function(response) {
onlogin();
});
FB.Event.subscribe('auth.logout', function(response) {
//window.location.reload();
});
}; // Load the SDK Asynchronously
(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=135669679827333";
fjs.parentNode.insertBefore(js, fjs); }(document, 'script',
'facebook-jssdk'));
</script>

关于javascript - 通过 Javascript 连接到 Facebook API 时如何重新加载/刷新类似 facebook 的按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9892680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com