Devise、twitter - 要求确认电子邮件

发布于 2024-12-05 05:30:14 字数 425 浏览 0 评论 0原文

我已经使用与此非常相似的方法实现了 Twitter 身份验证:https://github。 com/plataformatec/devise/wiki/OmniAuth:-概述

我的问题是,由于 twitter 不向您提供用户的电子邮件,您如何将用户引导回以下流程:

  1. 用户使用 twitter 登录
  2. 向用户呈现电子邮件表单
  3. 用户需要确认他/她的电子邮件,
  4. 单击确认链接会将用户发送到登录的网站

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:

  1. User signs in with twitter
  2. User is presented with an email form
  3. User needs to confirm his/her email
  4. 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 技术交流群。

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

发布评论

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

评论(2

冰之心 2024-12-12 05:30:14

在 Twitter 回调页面中显示新用户表单。将 Twitter 令牌存储在隐藏字段中。然后您可以在控制器中创建新用户并使用 twitter 令牌执行您想要的操作。 User.create 还会发送确认电子邮件。

User.create(:email => params[:email], :password => params[:password], :password_confirmation => params[:password_confirmation])

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.

User.create(:email => params[:email], :password => params[:password], :password_confirmation => params[:password_confirmation])
庆幸我还是我 2024-12-12 05:30:14

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.

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