OmniAuth is a flexible authentication system for Ruby applications utilizing Rack middleware, such as Rails applications. It supports a large number of external authentication providers, such as Facebook, Google, and Twitter.

learn more… | top users | synonyms

40
votes
14answers
13k views

OmniAuth & Facebook: certificate verify failed

I've followed Railscast #235 to try and set up a minimal Facebook authentication. I've first set up a Twitter authentication, as done by Ryan himself. That worked flawlessly. I then moved on to ...
17
votes
2answers
3k views

Turn omniauth facebook login into a popup

I'm using the omniauth gem with rails and it works great with loging in users, but everytime it takes you to the fb login page then redirects you back. I was wondering if there is a way to do what ...
14
votes
4answers
2k views

OmniAuth Google OpenID WEBrick::HTTPStatus::RequestURITooLarge

I am using OmniAuth to allow users to log in with their Google OpenID accounts. When I try to log in in development mode with WEBrick, I get a WEBrick::HTTPStatus::RequestURITooLarge error. When I ...
12
votes
3answers
776 views

OmniAuth: Guarding against multiple accounts for the same user

I have a couple of Rails apps I'm looking to integrate with OmniAuth, but there is a conceptual problem I'm having with it that I'd like to figure out first. Consider the following scenario: Your ...
9
votes
1answer
1k views

Devise Omniauth and Iphone/Android App

I've set up user auth for my rails App with Devise and Omniauth. Now I'm wondering where I should start to use the same auth for an Android and iPhone app I want to create. Should I use a mobile ...
8
votes
1answer
469 views

Devise (or OmniAuth) appending “#_” to URL after sign in

I'm using Devise and OmniAuth (Facebook) in a Rails 3 app. I just started noticing this behavior recently. When a user signs in, he is redirected to his dashboard, however, the characters "#_" are ...
8
votes
2answers
2k views

Has anyone used omniauth with rails 2.3.8?

I am new to Rails and I am trying to use omniauth with rails 2.3.8. I couldn't find any tutorial for this version of rails so I referred to ...
7
votes
1answer
605 views

Rails3: Devise internationalization does not localize “Password confirmation” and others

Here is my whole source code for a minimalist Devise+OmniAuth app. As you can see, the Japanese devise.ja.yml is in config/locales. PROBLEM: When I visit the site with lang=ja, some strings are not ...
7
votes
1answer
3k views

rails omniauth facebook extended permission

I have read the omniauth oauth rdoc @consumer = OAuth::Consumer.new(key, secret, { :site => "http://term.ie", :scheme => :header, :http_method ...
6
votes
1answer
221 views

rails omniauth and UTF-8 errors

I had a recent error using omniauth trying to populate some fields from Google's login Encoding::CompatibilityError: incompatible character encodings: ASCII-8BIT and UTF-8 "omniauth"=> ...
6
votes
1answer
643 views

omniauth oauth tokens for gmail are invalid

I'm trying to get an oauth token I can use with gmail_xauth (ruby gem) to look at a user's mail. I first registered my app with google and then set up devise to request access to mail: ...
6
votes
5answers
6k views

Omniauth Facebook authentication on localhost

I am trying to set up Omniauth as described in this Railscast. While it works with Twitter, I am unable to get it working with Facebook. I also set up 'http://localhost:3000' as siteurl and ...
6
votes
2answers
3k views

User auth example in Rails 3, using Devise, OmniAuth, Mongoid, and JSON responses

I have integrated Devise and OmniAuth with my Mongoid ORM setup using the following examples: https://github.com/plataformatec/devise/wiki/Example-Applications My client code is mostly JavaScript ...
6
votes
3answers
2k views

Omniauth - Display facebook connect as popup

I am using Omniauth and forcing /auth/facebook to display in a popup (with JS). [Instead of a new window - which is much less user friendly] The problem is: Omniauth loads the FB url with ...
6
votes
2answers
3k views

Devise omniauth integration problem

I have watched railscast http://railscasts.com/episodes/236-omniauth-part-2 And tried to implement the code, everything worked well in development environment. when I executed using rails s -e ...
5
votes
3answers
106 views
+100

Omniauth Session expires when browser is closed

In my rails 3 app I use Omniauth for the user authentication part (fb/twitter). Actually I follow this: https://github.com/RailsApps/rails3-mongoid-omniauth ...
5
votes
2answers
224 views

Devise, twitter - ask for confirmation email

I have implemented twitter authentication with devise using something very similar to this: https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview My question is, since twitter doesn't give ...
5
votes
3answers
1k views

How to get Koala to play nicely with Omniauth?

I'm trying to get Koala to work with Omniauth. A User model logs in with Facebook using Omniauth and I want to use Koala as a client to pull the list of a user's friends that are using the app. I ...
5
votes
3answers
2k views

Omniauth in Rails 3.1.rc4

I'm using the latest release of rails, starting a new app that I will be deploying in 3.1 once its out, and I cannot get omniauth to work. If I just add omniauth to my Gemfile, it bundles up, but when ...
5
votes
2answers
784 views

Getting SSL Error Using Koala with Devise & OmniAuth in a Rails 3 App

I'm building a Rails 3 app using Devise/OmniAuth, and Koala and I'm getting the following SSL error: OpenSSL::SSL::SSLError in Users/omniauth callbacksController#facebook SSL_connect returned=1 ...
5
votes
2answers
705 views

Rails/Cucumber - Hosting error testing omniauth (provider: facebook) - (URI::InvalidComponentError)

I am facing an error trying to configure omniauth for integration testing purpose with cucumber (I set up Omniauth through Devise as the wiki provides) Please see below: Scenario: Test ...
5
votes
1answer
470 views

How do I NOT require user's email when using Rails Omniauth gem and Google OpenID

My current /config/initializers/omniauth.rb file contains: Rails.application.config.middleware.use OmniAuth::Builder do provider :open_id, nil, :name => 'google', :identifier => ...
5
votes
1answer
3k views

devise sign_in_and_redirect never seems to work

I would like it, if after a user logs in, that it automatically redirect to their previous location, but this never seems to happen, it always redirects back to the root location. From reading the ...
5
votes
2answers
2k views

OmniAuth + Pulling Tweets, FB Places, etc

I'm using OmniAuth + Devise to allow users to register using Facebook/Twitter/Gowalla/etc attached to normal user accounts. Now when a user logs in using any of these, or their account, all their ...
4
votes
1answer
262 views

No route matches “/oauth/authorize”

I've started integrating Omniauth 1.0 into my Rails/Authlogic application and I get a route error when I try to access localhost:3000/auth/facebook. Are we supposed to create a custom route for each ...
4
votes
1answer
187 views

How to get create an access token in ruby on rails for gmail contacts

I am using Omniauth to request the user gmail credentials, so I can request the user friends/contacts later. Right now I am getting the friends list inside of the OmniauthCallbacks controller, using ...
4
votes
1answer
321 views

When mixing omniauth and fbgraph gems I am failing to get an access key

I am using Rails 3. I am getting a Rack::OAuth2::Client::Error in SessionsController#create error when I try to get the access key. I used omniauth to login to facebook and I am getting the ...
4
votes
1answer
1k views

Testing Omniauth in Rails

We are starting to develop a new website using Rails 3, RSpec 2, and OmniAuth 2. We wanted to follow TDD using RSpec to write the authentication, but we actually don't know where to start. We don't ...
4
votes
1answer
635 views

omniauth 0.2.3 invalid_credentials

I have been using OmniAuth 0.2.3 with Rails 3.0.7 for facebook authentication. I have obtained application ids for localhost and hosting environment separately. When testing in localhost, everything ...
4
votes
4answers
700 views

Facebook canvas app not saving Sessions

I made a test facebook app just to play around and I am using sessions to store the authentification. I am using omniauth. When I go to log in from http://fbbtest.heroku.com/ and then refresh the page ...
4
votes
1answer
648 views

Rails 3 getting gmail contacts using omniauth?

I am successfully login with google credentials using omniauth? omniauth is providing uid as following link https://www.google.com/accounts/o8/id?id=xxxxxxxxxx by using the above link is possible to ...
4
votes
2answers
3k views

OmniAuth doesn't work with Route Globbing in Rails3

I am trying to follow the Railscast 241 Simple OmniAuth and it works fine unless I have Route Globbing at the end of /config/routes.rb: match '*uri' => "posts#index" If I request /auth/twitter ...
4
votes
4answers
721 views

Switching between web and touch interfaces on Facebook login using Omniauth and Rails 3

The situation: Using Rails 3 and OmniAuth, I have an app that authenticates using the Facebook strategy. This app has been built to work equally-well for web and mobile interfaces (ala ...
4
votes
1answer
681 views

Rails session gets destroy whenever model destroy link is clicked

If I click destroy on any record for my 3 models models, the user gets logged out. I'm using Devise and Ominauth. #This logs out a user def destroy @rating = Rating.find(params[:id]) ...
4
votes
2answers
784 views

OmniAuth - current session not loaded on OpenID callback

I'm using OmniAuth with Rails 3.1.4 and I'm trying to allow already authenticated users to associate multiple OpenID providers with their account. As an unauthenticated user, signing in with OpenID ...
4
votes
1answer
789 views

OmniAuth - Facebook login not supplying email in user_info

I'm using OmniAuth, and after logging in via Facebook, I get my omniauth.auth key, which looks like this: user_info: name: Tim Sullivan urls: Facebook: http://www.facebook.com/... ...
4
votes
2answers
2k views

Twitter API via OmniAuth on Rails 3, Net::HTTPUnauthorized hell

I followed the Simple OmniAuth tutorial (http://asciicasts.com/episodes/241-simple-omniauth), and I can log in with my twitter account on the service. Now I want to access the twitter API and tweet ...
4
votes
1answer
322 views

How should I test user signup/login with third party library like Omniauth?

I'm using Rails 3.0.3, Rspec2 , Cucumber , Capybara How should a scenario look for user signup process , when using the Omniauth gem ? I mean it doesn't make sense for me to testing this library, I ...
4
votes
2answers
802 views

How do I write a spec for a Rails route that does redirecting?

I am using Omniauth in my Rails project, and I'll like to hide "/auth/facebook" behind a "/login" route. In fact, I wrote a route: match "/login", :to => redirect("/auth/facebook"), :as => ...
4
votes
2answers
1k views

Devise and OmniAuth remembering OAuth

So, I just got setup using Rails 3, Devise and OmniAuth via https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview. I'm successfully authenticating users via Facebook, but they are not ...
4
votes
3answers
2k views

OmniAuth to extract full profile data from LinkedIn

I'm loving the ease of OmniAuth, but I'm having a hard time connecting the dots on making additional api calls after I receive the token back. I'll use LinkedIn as an example, but it's not LinkedIn ...
4
votes
2answers
1k views

Rails 3 - Devise : How to skip the 'current_password' when editing a registration?

I've implemented omniauth with my devise model, so I can authenticate using other services. Password is not necessary anymore for my model, as users can authenticate using twitter, facebook... ...
3
votes
1answer
79 views

Devise, OmniAuth & Facebook - How to let user edit password?

I'm hoping that someone else has a good solution for this issue. We let our users register using facebook (by liking an app), and at the same time they enter our database as users on our site. Upon ...
3
votes
1answer
308 views

Devise with omniauth-facebook “Invalid Credentials”

I'm trying to get Facebook authentication working with Devise through omniauth-facebook, I've followed the instructions here: https://github.com/plataformatec/devise/wiki/OmniAuth%3a-Overview When I ...
3
votes
2answers
231 views

No route matches [GET] “/auth/google_apps” when I try to authenticate with omniauth-google-oauth2 gem

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 ...
3
votes
2answers
300 views

Omnisocial depends on gem bcrypt-ruby 2.1, but Rails 3.1 depends on bcrypt 3.0.0 - what do I do?

Trying to test out this awesome looking gem - http://icelab.com.au/articles/welcome-to-the-omnisocial/ - that promises easy integration of Twitter & FB login to my app. But, when I run bundle ...
3
votes
1answer
908 views

Devise + Omniauth [WARNING: Can't verify CSRF token authenticity]

I am getting this warning WARNING: Can't verify CSRF token authenticity immediately before my callback action runs, i.e. Started GET ...
3
votes
2answers
674 views

Omniauth Rspec testing problem

I followed the rails cast of omniauth to create authentication for twitter ( http://railscasts.com/episodes/235-omniauth-part-1?view=comments ). It works fine in development but I can't get rspec to ...
3
votes
2answers
302 views

OmniAuth on Heroku with custom domain results in Application Error

I have an application on Heroku which uses omniauth and authenticates correctly when I visit myapplication.heroku.com/auth/open_id, input my google endpoint, and get redirected back. However, when I ...
3
votes
1answer
527 views

Retrieving Google profile picture with Omniauth on Rails 3

I'm starting a new Rails 3 app using Omniauth for authentication via Facebook, Twitter and Google. I can easily get the user's avatar from Facebook and Twitter, but can't find a way to retrieve it ...

1 2 3 4 5 10