Facebook喜欢并分享用户跟踪

问题描述 投票:-1回答:2

我在我的网站上使用FB共享和插件。下方链接:

https://developers.facebook.com/docs/plugins/like-button

我想跟踪登录我网站的用户(我有用户ID)并喜欢并通过FB共享帖子和共享插件,当用户这样做时,我会做一些php编码并立即奖励用​​户用户喜欢并分享我的帖子的事实。我如何跟踪用户喜欢和分享?谢谢,

javascript php facebook facebook-like tracking
2个回答
0
投票

阅读本文 - https://developers.facebook.com/docs/javascript/reference/FB.ui

这个例子非常清楚,你有一个回调,你可以根据响应的状态(他们实际共享,他们取消等)做任何事情,你可以在回调中调用你的PHP驱动的服务器并做任何事情。


0
投票

您无法使用此like按钮获取共享回调。您可以改为创建一个share按钮,并在其点击时调用Feed对话框 -

FB.ui(
{
  method: 'feed',
  name: 'Facebook Dialogs',
  link: 'https://developers.facebook.com/docs/dialogs/',
  picture: 'http://fbrell.com/f8.jpg',
  caption: 'Reference Documentation',
  description: 'Dialogs provide a simple, consistent interface for applications to interface with users.'
},
function(response) {
  if (response && response.post_id) {
    alert('Post was published.');
  } else {
    alert('Post was not published.');
  }
}
);

另见这个链接:https://developers.google.com/analytics/devguides/collection/gajs/gaTrackingSocial

© www.soinside.com 2019 - 2024. All rights reserved.