Facebook api - 仅邀请那些没有该应用程序的人
我使用此方法是为了允许最终用户邀请朋友:
FB.ui({method: 'apprequests', message: 'app message!', data:'tracking information for the user'});
系统会提示用户一个 facebook 对话框,他可以在其中选择邀请:
- 所有朋友
- 我的应用程序用户(安装/允许使用该应用程序的用户)
- 朋友邀请(那些没有安装应用程序的人 - 我的目标)
或在简短的图像中:
我不希望最终用户在这里有选择,只提示第三个选项 - 那些没有该应用程序的用户。
有人能指出我在这方面的正确方向吗? 我正在使用 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:
- All friends
- my app users (the users that have the app installed/allowed)
- Friends to Invite (those that don't have the app installed - my goal)
Or in a brief image:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
过滤器必须位于数组内,因此
filters: ['app_non_users']
,filters must be within an array, so
filters: ['app_non_users']
,