我的网站有 facebook 应用程序,并且 facebook 连接工作正常。我在用户的墙上发布帖子选项,但在墙上发布帖子是作为弹出窗口发生的,并且大多数浏览器都会自动禁用弹出窗口。所以墙贴没有像我想要的那样工作,因为大多数人不启用弹出窗口。是否有任何解决方案可以使此帖子不是弹出窗口。
我用于 fb connect 的代码是
<script>
window.fbAsyncInit = function()
{
FB.init({
appId : '',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true , // parse XFBML
oauth : true // Enable oauth authentication
});
FB.login(function(response)
{
if (response.authResponse)
{
FB.api('/me/feed', 'post',
{
message : "",
link : '',
picture : "",
name : '',
description : ''
},
function(response) {
showLoader(false);
if (!response || response.error) {
alert('Error occured');
} else {
alert('Post ID: ' + response.id);
}
});
}
}, { scope : 'publish_stream' });
};
</script>
<!-- FACEBOOK -->
<div id="fb-root"></div>
<script>
(function() {
var e = document.createElement('script');
// replacing with an older version until FB fixes the cancel-login bug
e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
//e.src = 'scripts/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
<!-- END-OF-FACEBOOK -->