我打算在网页上安装Facebook评论模块/插件,让我们说:
是否可以将用户重定向到网站内的其他目标网页?假设我想点击发表评论后发送给他们:
http://www.example.com/landing-page/
这可以使用Facebook API或其他脚本吗?
答案 0 :(得分:0)
您可以订阅comment.create事件,当用户添加如下评论时会触发该事件:
初始化
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'sensored-app-id',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true // parse XFBML
});
/* All the events registered */
FB.Event.subscribe('comment.create', function (response) {
// Redirect to http://www.example.com/landing-page/
window.location = "http://www.example.com/landing-page/";
});
};
(function() {
var e = document.createElement('script');
e.src = document.location.protocol + '//connect.facebook.net/fi_FI/all.js';
e.async = true;
document.getElementById('fb-root').appendChild(e);
}());
</script>
在您的fb评论中,您必须像这样设置notify =“true”
<fb:comments numposts="10" notify="true"></fb:comments>