Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

john vehr
7,214 Pointsomniauth and devise
I am looking for a good CLEAR way to add Facebook AND twitter to a Rails 4 application using Devise! Is there any good documentation out there that walks you through the process?
1 Answer

Hethe Berg
6,963 PointsFor Rails 4 and Devise:
It's tricky for me as I'm a noob. It's a two part solution for the controller page.
Documentation is on Devise itself... but I'll be the first to say they could break it down easier for newbies like me. Of course they also say "Devise may not be the best for newbies" on their page too.
Works for me, FYI, I use a :profile_name here and you may not
class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
before_filter :configure_permitted_parameters, if: :devise_controller?
protected
def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) { |u| u.permit( :first_name, :last_name, :profile_name, :password_confirmation, :password, :email ) }
devise_parameter_sanitizer.for(:sign_in) { |u| u.permit( :profile_name, :password, :email ) }
end
end