I have implemented twitter and facebook authentication with omniauth gem, but when i try to authenticate with openID or google I get: No route matches [GET] "/auth/google_apps" or No route matches [GET] "/auth/open_id" errors

My omniauth.rb file is:

require 'openid/store/filesystem'

Rails.application.config.middleware.use OmniAuth::Builder do
provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'openid'
provider :openid, :store => OpenID::Store::Filesystem.new('/tmp'), :name => 'google', :identifier => 'https://www.google.com/accounts/o8/id'

And my routes.rb is that:

match '/auth/:provider/callback', to: 'authentications#create'

And my Gemfile is this:

#for user authentication
gem 'devise'
gem 'omniauth'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-openid'
gem 'omniauth-google-oauth2'

I have to put anything else in my code to run OpenID and google authentication? thanks

link|improve this question

50% accept rate
feedback

2 Answers

Your calls are erroneous. You should call :

/auth/google
link|improve this answer
feedback
provider :openid, :store => OpenID::Store::Filesystem.new('./tmp')

use this code instead, and link /auth/google

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.