我正在设置登录/注册facebook(设计),但与其他人一样,我没有运气让它正常工作。我已经阅读了很多来自其他人的帖子和文章,并且多次进行了设置,但结果仍然相同。
当我点击“使用Facebook登录”按钮时,收到消息“未找到。身份验证passthru”。
它从未通过“facebook”控制器动作,但始终通过“passthru”动作。
我用: - rake v2.3.0 - rails v4.2.3 - 设计v3.5.2
感谢您的帮助。 米罗
class OmniauthCallbacksController < Devise::OmniauthCallbacksController
# You should configure your model like this:
# You should also create an action method in this controller like this:
def facebook
# You need to implement the method below in your model (e.g. app/models/user.rb)
@user = User.from_omniauth(request.env["omniauth.auth"])
if @user.persisted?
sign_in_and_redirect @user, :event => :authentication #this will throw if @user is not activated
set_flash_message(:notice, :success, :kind => "Facebook") if is_navigational_format?
else
session["devise.facebook_data"] = request.env["omniauth.auth"]
redirect_to new_user_registration_url
end
end
# More info at:
# https://github.com/plataformatec/devise#omniauth
# GET|POST /resource/auth/facebook
def passthru
super
end
# GET|POST /users/auth/facebook/callback
def failure
super
#redirect_to root_path
end
# protected
# The path used when OmniAuth fails
def after_omniauth_failure_path_for(scope)
super(scope)
end
#def failure
# redirect_to root_path
#end
end
class User < ActiveRecord::Base
devise :database_authenticatable, :registerable, :confirmable,
:recoverable, :rememberable, :trackable, :omniauthable, :validatable, password_length: 6..72, :omniauth_providers => [:facebook]
def self.from_omniauth(auth)
where(provider: auth.provider, uid: auth.uid).first_or_create do |user|
user.email = auth.info.email
user.password = Devise.friendly_token[0,20]
user.rolable.firstname = auth.info.firstname # assuming the user model has a name
user.rolable.lastname = auth.info.lastname
user.image = auth.info.image # assuming the user model has an image
# If you are using confirmable and the provider(s) you use validate emails,
# uncomment the line below to skip the confirmation emails.
# user.skip_confirmation!
end
end
end
Devise.setup do |config|
config.mailer = 'CustomDeviseMailer'
require 'devise/orm/active_record'
config.case_insensitive_keys = [:email]
config.strip_whitespace_keys = [:email]
config.http_authenticatable_on_xhr = false
config.skip_session_storage = [:http_auth]
config.stretches = Rails.env.test? ? 1 : 10
config.allow_unconfirmed_access_for = 1.days
config.reconfirmable = false
config.expire_all_remember_me_on_sign_out = true
config.password_length = 6..72
config.reset_password_within = 24.hours
config.sign_out_via = :delete
config.omniauth :facebook, ENV['FACEBOOK_APP_ID'], ENV['FACEBOOK_APP_SECRET']
end
devise_for :users, path: "auth", :controllers => {sessions: 'sessions', registrations: 'registrations', confirmations: 'confirmations', passwords: 'passwords', omniauth_callbacks: 'omniauth_callbacks'}
user_omniauth_authorize_en GET|POST /en/auth/auth/:provider(.:format) omniauth_callbacks#passthru {:locale=>"en", :provider=>/facebook/}
user_omniauth_authorize_ma GET|POST /ma/auth/auth/:provider(.:format) omniauth_callbacks#passthru {:locale=>"ma", :provider=>/facebook/}
user_omniauth_authorize_cs GET|POST /cs/auth/auth/:provider(.:format) omniauth_callbacks#passthru {:locale=>"cs", :provider=>/facebook/}
user_omniauth_callback_en GET|POST /en/auth/auth/:action/callback(.:format) omniauth_callbacks#(?-mix:facebook) {:locale=>"en"}
user_omniauth_callback_ma GET|POST /ma/auth/auth/:action/callback(.:format) omniauth_callbacks#(?-mix:facebook) {:locale=>"ma"}
user_omniauth_callback_cs GET|POST /cs/auth/auth/:action/callback(.:format) omniauth_callbacks#(?-mix:facebook) {:locale=>"cs"}
<%= button_to t(:login_form_link_facebook), user_omniauth_authorize_path(:facebook), :title => t(:login_form_link_facebook), :class => "btn btn-fcb full-w capital semi-margin-bottom bold", :method => :get %>
答案 0 :(得分:0)
我的问题在于路线。我使用本地化的网址,它导致facebook omniauth问题。
而不是:
.myhoveredclass {
background-color:green;
}
.myhoveredclass:hover {
background-color:red;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
.myhoveredclass:hover, .myhoveredclass:active, .myhoveredclass:focus {
background-color:green;
}
}
我用过:
localized do
devise_for :users, path: "auth", :controllers => {sessions: 'sessions', registrations: 'registrations', confirmations: 'confirmations', passwords: 'passwords', omniauth_callbacks: 'omniauth_callbacks'}
end