Devise、twitter - 要求确认电子邮件
我已经使用与此非常相似的方法实现了 Twitter 身份验证:https://github。 com/plataformatec/devise/wiki/OmniAuth:-概述
我的问题是,由于 twitter 不向您提供用户的电子邮件,您如何将用户引导回以下流程:
- 用户使用 twitter 登录
- 向用户呈现电子邮件表单
- 用户需要确认他/她的电子邮件,
- 单击确认链接会将用户发送到登录的网站
Devise 几乎会处理#3 和#4。我应该如何构建我的代码以允许 #2 转换为 #3 和 #4?
谢谢!
I have implemented twitter authentication with devise using something very similar to this: https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
My question is, since twitter doesn't give you the email of the user, how can you direct the user back to the flow of:
- User signs in with twitter
- User is presented with an email form
- User needs to confirm his/her email
- clicking confirmation link sends user to site logged in
Devise pretty much takes care with #3 and #4. How should I structure my code to allow #2 to transit into #3 and #4?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 Twitter 回调页面中显示新用户表单。将 Twitter 令牌存储在隐藏字段中。然后您可以在控制器中创建新用户并使用 twitter 令牌执行您想要的操作。 User.create 还会发送确认电子邮件。
Show new user form in twitter callback page. Store twitter token in hidden field. Then you can create new user in your controller and do what you want with the twitter token. User.create also sends confirmation email.
Ryan Bates 在他的截屏视频 OmniAuth 第 2 部分 中介绍了大部分内容,以获取电子邮件确认您所需要做的就是添加
confirmable
选项来设计。Ryan Bates covers most of this in his screencast OmniAuth Part 2, to get the email confirmation all you need to do is add the
confirmable
option to devise.