设计+ OmniAuth 安装错误:未定义方法“omniauth”对于设计:模块(NoMethodError)
我正在努力允许用户 FB Connect 进入我的应用程序进行身份验证。我的应用程序当前使用 devise,因此我在此处遵循教程:
https://github .com/plataformatec/devise/wiki/OmniAuth%3A-Overview
将其添加到我的 gem 文件后:
gem "oa-oauth", :require => "omniauth/oauth"
将其添加到 config/initializers/devise.rb:
config.omniauth :facebook, "APP_ID", "APP_SECRET"
将其添加到 app/models/User.rb
devise :omniauthable
运行捆绑安装后,当我运行 Rails 时,出现错误。想法为什么?谢谢
I'm working to allow users to FB Connect into my app for authentcation. My app currently uses devise so I'm following the tutorial here:
https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview
After adding this to my gem file:
gem "oa-oauth", :require => "omniauth/oauth"
This to config/initializers/devise.rb:
config.omniauth :facebook, "APP_ID", "APP_SECRET"
This to app/models/User.rb
devise :omniauthable
After running bundle install, when I run rails s I get the error. Ideas why? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 gemfile 中添加 'omniauth' 然后尝试。
gem "omniauth" , "0.2.0"
我的设计版本是 1.3.3
Add 'omniauth' in gemfile and then try.
gem "omniauth" , "0.2.0"
My devise version is 1.3.3