从 Facebook 应用程序向朋友发送电子邮件
我想通过 Facebook 邀请朋友加入我的应用程序。例如,用户可以将他的朋友的 facebook ID 发送到我的 php 服务,该服务通过 facebook api 向他们发送电子邮件。我找到了 notification.sendEmail 函数,但如果我登录 FB,它只会为我发送电子邮件。那么,如果他们不是我的应用程序的用户,我可以通过 FB api 发送邀请电子邮件吗?
I want to invite friends via facebook to my application. For example user can send his friends facebook IDs to my php service, and this service send them emails via facebook api. I found notifications.sendEmail function for that, but it send email only for me if I logged in FB. So, can I send invitation emails by FB api if they are not users of my application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要发送应用请求,请使用 https://developers.facebook.com/docs/reference /dialogs/requests/ 因为应用程序自动向其用户的朋友发送应用程序请求是违反政策的。邀请哪些朋友必须是用户发起的并且也是由用户驱动的。
此外,您无法获取用户朋友的电子邮件地址,这也是被禁止的。
For sending app requests, please use https://developers.facebook.com/docs/reference/dialogs/requests/ as it is against policy for an app to automatically send app request to friends of its users. It must be user initiated and also user driven as to which friends get invited.
Also, you cannot get email addresses of a user's friends, this is also prohibited.