如何接收在 Facebook 上分享了我的 link 的用户列表?
How to recieve list of users who shared my link on facebook?
我正在尝试获取在 Facebook 上分享我的 link 的用户列表。我需要姓名和身份证。我正在阅读有关 opengraph API 的信息,但听说受 facebook 隐私保护,对吗?
第二次尝试:如果我像这样使用 JS SDK
FB.ui(
{
method: 'share',
href: 'https://developers.facebook.com/docs/',
},
// callback
function(response) {
if (response && !response.error_message) {
alert('Posting completed.');
} else {
alert('Error while posting.');
}
}
);
我可以获取分享此 link 的姓名或 ID 作为回调数据吗?
我能做到吗?
谢谢
这只有在用户在您的应用程序中获得授权时才有可能 - 具有 publish_actions
权限。只有在那种情况下,您才能确定用户确实分享了某些内容,因为您将在回调中获得 Post ID。
但是:您肯定不会因此而在审核过程中获得publish_actions
批准。
我正在尝试获取在 Facebook 上分享我的 link 的用户列表。我需要姓名和身份证。我正在阅读有关 opengraph API 的信息,但听说受 facebook 隐私保护,对吗?
第二次尝试:如果我像这样使用 JS SDK
FB.ui(
{
method: 'share',
href: 'https://developers.facebook.com/docs/',
},
// callback
function(response) {
if (response && !response.error_message) {
alert('Posting completed.');
} else {
alert('Error while posting.');
}
}
);
我可以获取分享此 link 的姓名或 ID 作为回调数据吗?
我能做到吗?
谢谢
这只有在用户在您的应用程序中获得授权时才有可能 - 具有 publish_actions
权限。只有在那种情况下,您才能确定用户确实分享了某些内容,因为您将在回调中获得 Post ID。
但是:您肯定不会因此而在审核过程中获得publish_actions
批准。