Hello,
I am handling callbacks in my omniauth_callbacks_controller and I'm
successfully handling callbacks from Facebook and Twitter and can
access current_user in their respective callbacks. However when I
receive a callback from Google/open_id, current_user is nil:NilClass.
I am getting Omniauth data passed to the callback OK, but with a Nil
current_user I can't handle it.
My open_id setup looks like this:
require 'openid/store/filesystem'
config.omniauth :open_id, :store => OpenID::Store::Filesystem.new('/
tmp'), :name => 'google', :identifier => 'https://www.google.com/
accounts/o8/id', :require => 'omniauth-openid'
What could be casuing this?
Thanks