实施“邀请好友”特征?
我正在使用
Play Framework
并希望在用户注册时实现“邀请好友”
功能。我该如何实施?例如两个用户
A
&B
邀请他们的共同朋友 C
,现在 C 在 A 的邀请下加入,我怎么知道后台它必须与 A 相关联而不是与 A 相关联 B 他什么时候加入应用程序?
谢谢
I am using
Play Framework
and want to implement"Invite Friends"
feature when user signs up. How do I implement that?for example two users
A
&B
invite theirmutual friend C
, now C joins with the invitation of A, how do I know at the backed that it has to be associated to A andNOT
B when he joins the application?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我没有使用
Play Framework
的经验,但尝试在每个邀请中发送唯一的 ID。然后,当“C”加入时,您检查他加入时遵循的 ID。这样您就可以记入与该 ID 关联的人。I have no experience with
Play Framework
but try sending an unique ID in each invitation. Then when 'C' joins, you check which ID he followed onto joining. That way you can credit the person with whom that ID was associated.