设计+ OmniAuth 安装错误:未定义方法“omniauth”对于设计:模块(NoMethodError)

发布于 2024-11-05 00:52:48 字数 586 浏览 1 评论 0原文

我正在努力允许用户 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 技术交流群。

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

发布评论

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

评论(1

薄暮涼年 2024-11-12 00:52:48

在 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

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