作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!