如何检测 FB OTHER 页面之类的点击事件?我在一个页面上登录,其他 id 页面有类似按钮。
FB.init({
appId : '8888888888', // App ID
channelUrl : 'http://channel.com',
status : true, // check login status
cookie : true, // enable cookies to allow the server to access the session
xfbml : true, // parse XFBML
});
FB.login(function(response) {
if (response.status == 'connected') {
var other_page_id = "333333333333";
FB.api('/me/likes/'+other_page_id, function(response) {
// check already liked other_page on start...
});
}
});
FB.Event.subscribe('edge.create', function(response) {
//user just clicked "like" on MY page (id=8888888888), but I need other_page_id (id=333333333333) click event...
});