Facebooker Rails 插件 - 通知
我有一个很愚蠢的问题:如何发送通知? 例如,当我在我的应用程序上注册用户时,我想用以下方式欢迎他/她 通知。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我有一个很愚蠢的问题:如何发送通知? 例如,当我在我的应用程序上注册用户时,我想用以下方式欢迎他/她 通知。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
假设您正在使用 Facebooker(实际上您应该使用 Facebooker),您可以创建一个 Publisher 类。
Assuming you're using Facebooker (which, really, you should be), you can create a Publisher class.
您还可以使用 facebook_session.send_notification([user_fb_id], "notification message") (在您的控制器中)。 这将是应用程序到用户的通知,您每周可以发送给用户的通知数量有限。
要查看此限制,您可以使用以下调用:
Facebooker::Session.create.post('facebook.admin.getAllocation', :integration_point_name => 'announcement_notifications_per_week')
You can also use facebook_session.send_notification([user_fb_id], "notification message") (in your controller). This will be an app-to-user notification, and you have a limited number that you can send to users each week.
To see this limit you can use the following call:
Facebooker::Session.create.post('facebook.admin.getAllocation', :integration_point_name => 'announcement_notifications_per_week')