我正在尝试与新的Facebook Share按钮一起订阅“edge.create”事件而没有任何运气。 我正在使用标准活动订阅:
FB.Event.subscribe('edge.create',
function(response) {
console.log(response);
}
);
事件未被触发......它使用Like按钮
有什么建议吗?
答案 0 :(得分:4)
不推荐使用facebook分享按钮以支持类似按钮。来自他们的文档:
已弃用“分享”按钮,而赞成“赞”按钮,以及 将不再受支持。请随时使用Like按钮 可以为您的应用带来最大流量。
您可以使用类似按钮的事件,但是如果您想跟踪共享按钮,那么仍然可以使用一些javascript。您可以将单击事件添加到FB共享按钮。
这是我正在使用的一个例子。
window.fbAsyncInit = function () {
FB.init({
appId: 'your app id',
status: true,
cookie: true,
xfbml: true,
oauth: true
});
$('#facebook-share').click(function () {
FB.ui({
method: 'feed',
link: document.URL,
caption: 'example',
}, function (response) {
if (response === null) {
console.log('post was not shared');
} else {
console.log('post was shared');
}
});
});
};
(function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.async = true;
js.src = "//connect.facebook.net/en_US/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
答案 1 :(得分:0)
创建一个Facebook应用程序并获得批准是无聊的,可能需要这么多时间......
我在这里做的另一种方式是不想发布一个APP只是为了它:
jQuery("#div_share").click(function() {
var url = "http://www.facebook.com/sharer/sharer.php?u=YOUR_URL&title=YOUR_TITLE";
var openDialog = function(uri, name, options, closeCallback) {
var win = window.open(uri, name, options);
var interval = window.setInterval(function() {
try {
if (win == null || win.closed) {
window.clearInterval(interval);
closeCallback(win);
}
}
catch (e) {
}
}, 1000);
return win;
};
openDialog(url,'Facebook','width=640,height=580', function(){
jQuery("#div_share").hide();
jQuery("#formulario").show();
});
});
它会打开一个javascript对话框进行分享,并知道用户何时关闭它。它不能保证他们真正分享内容......但是...... :)