检查用户是否在 Facebook 应用程序上分享

发布于 2024-11-03 01:53:12 字数 172 浏览 5 评论 0原文

是否可以在 iframe 应用程序中检查用户是否成功共享某些内容。如果共享成功,我可以获取请求ID吗?如果共享,我想让共享按钮对该用户可见为假,并且如果共享成功,用户将获得一些积分,

那么是否可以知道并检查它?

我正在使用 C#,但对于 javascript 代码来说没问题,

谢谢

is it possible in an iframe applications check if the user share something successfully. may i get the request id if it is successfully shared so if it is shared i want to make the share button's visible false to that user and the user earns some points if the share is successfull

so is it possible to know and check it?

i am using c# but it is ok for javascript code

thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

情独悲 2024-11-10 01:53:12

使用 Javascript SDK 您应该能够获取该信息。

FB.ui({
    method: 'apprequests',
    message: 'Your message here',
    title: 'App Request',
},
function (response) {
    if (response) {
        var numberSelected = response.to.length;
        var firstIdSelected = response.to[0];
    } else {
        alert('canceled');
    }
});

using the Javascript SDK you should be able to get that information.

FB.ui({
    method: 'apprequests',
    message: 'Your message here',
    title: 'App Request',
},
function (response) {
    if (response) {
        var numberSelected = response.to.length;
        var firstIdSelected = response.to[0];
    } else {
        alert('canceled');
    }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文