请求对话框 - 允许用户选择他必须向其发送邀请的朋友

发布于 2024-12-12 04:26:30 字数 118 浏览 0 评论 0原文

我正在使用 javascript 请求对话框向朋友发送应用程序邀请。

当我向 b 发送邀请时,我应该无法再次向他发送邀请。 有没有办法只显示我没有在请求对话框中发送邀请的朋友,或者有其他方法可以做到这一点?

I'm using javascript request dialog to send app invite to friends.

when i send invite to b, I should not be able to send invitation to him again.
Is there any way to show only friends to whom I've not sent invite in request dialog or is there any other way to do this?

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

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

发布评论

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

评论(1

七度光 2024-12-19 04:26:30

考虑到您正在使用此功能,有一些事情可以帮助您:

  • 例如,您可以将参数filters转为app_non_users,这样您就可以只邀请不使用您的应用程序的人。您还可以传递一个自定义过滤器,其中包含您可以邀请的人员的所有 Facebook ID
  • 而且,也许对于您需要的东西更有用,参数 exclude_ids 可以将您不希望能够发送请求的 ID 数组传递给该参数。
    因此,当您发送请求时,您会存储有关它的信息,例如您发送请求的人员的 Facebook ID,然后您只需将这些 ID 的列表传递给您的函数即可。

但是,请记住,有人可以拒绝您的请求,并且不会向您发送任何内容,您必须自己检查!

Considering you're using this function, there's to things that can help you :

  • The parameter filters, which you can turn to app_non_users for example, allowing you to invite only people who are not using your application. You can also pass a custom filter with all the facebook ids of people you can invite.
  • And, maybe more useful for what you need, the parameter exclude_ids to which you can pass the array of IDs you don't want to be able to send requests.
    So, when you send requests, you store information about it, like facebook ids of the people you sent it to, then you just pass a list of these ids to your function.

But, keep in mind that someone can decline your request, and nothing is sent to you, you have to check it yourself !

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