Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save drKreso/9369d8388fb6f9b504dd2d9db21ba6e5 to your computer and use it in GitHub Desktop.

Select an option

Save drKreso/9369d8388fb6f9b504dd2d9db21ba6e5 to your computer and use it in GitHub Desktop.
# app/controllers/users/omniauth_callbacks_controller.rb
class Users::OmniauthCallbacksController < Devise::OmniauthCallbacksController
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
def failure
redirect_to root_path
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment