Facebook api - 仅邀请那些没有该应用程序的人

发布于 2024-11-01 23:19:19 字数 489 浏览 0 评论 0原文

我使用此方法是为了允许最终用户邀请朋友:

     FB.ui({method: 'apprequests', message: 'app message!', data:'tracking information for the user'});

系统会提示用户一个 facebook 对话框,他可以在其中选择邀请:

  1. 所有朋友
  2. 我的应用程序用户(安装/允许使用该应用程序的用户)
  3. 朋友邀请(那些没有安装应用程序的人 - 我的目标)

或在简短的图像中:

在此处输入图像描述

我不希望最终用户在这里有选择,只提示第三个选项 - 那些没有该应用程序的用户。

有人能指出我在这方面的正确方向吗? 我正在使用 php + facebook 的 php sdk。

I'm using this method in order to allow the end user to invite friends:

     FB.ui({method: 'apprequests', message: 'app message!', data:'tracking information for the user'});

The user is prompted with a facebook dialog in which he can choose to invite:

  1. All friends
  2. my app users (the users that have the app installed/allowed)
  3. Friends to Invite (those that don't have the app installed - my goal)

Or in a brief image:

enter image description here

I don't want the end user to have a choice here, only prompt the third option - those that don't have the app.

Can someone point me to the right direction on this?
I'm using php + facebook's php sdk.

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

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

发布评论

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

评论(2

难忘№最初的完美 2024-11-08 23:19:19
FB.ui({method: 'apprequests', message: 'app message!',filters:'app_non_users' data:'tracking information for the user'});
FB.ui({method: 'apprequests', message: 'app message!',filters:'app_non_users' data:'tracking information for the user'});
夜巴黎 2024-11-08 23:19:19

过滤器必须位于数组内,因此 filters: ['app_non_users'],

filters must be within an array, so filters: ['app_non_users'],

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文