OmniAuth is a flexible authentication system for Ruby applications utilizing Rack middleware, such as Rails applications.

learn more… | top users | synonyms

4
votes
0answers
208 views

Login to OmniAuth GAFYD authenticated website through Android HttpClient

I'm writing an Android app that needs to programatically connect to Ruby on Rails website that uses the OmniAuth gem for login. The authentication provider is a Google Apps For Your Domain site. I ...
3
votes
0answers
133 views

omniauth (google_apps) Request phase initiated. blocking my app

I just implement Omniauth+Devise to signin using Google Apps, but when doing the request and the "Request phase initiated" my app get blocked, i tried a request in another window and it didnt execute ...
3
votes
0answers
256 views

Devise + OmniAuth NoMethodError UndefinedMethod Username

I'm following through Railscast #235 "Devise + OmniAuth Revised" and have run into a NoMethodError for Username whenever I try to authenticate using Twitter. I'm running Rails 3.2. Specifically, it ...
3
votes
0answers
104 views

Omniauth login without refreshing the page?

I'm using the Omniauth gem to let my users sign up through twitter. I want the omniauth process to happen behind the scenes, so I'm trying to make the link to /auth/twitter a remote: true link. ...
3
votes
0answers
303 views

Why Omniauth redirects to /auth/failure and not /auth/:provider/failure

everything is in the title. Do you know why omniauth redirects to /auth/failure in case of a failure for every strategy by default ? It would be so much easier to customize errors pages depending on ...
3
votes
0answers
652 views

Omniauth: How to set authentication provider details at runtime

I have a rails app that is accessible from 2 domains. Facebook requires me to register a facebook app for each of these domains and gives me credentials for each. With Omniauth I can only specify one ...
2
votes
0answers
66 views

nil class error on post process

class IdentitiesController < ApplicationController def new @identity = Identity.new # @identity = env['omniauth.identity'] end end my signup form is: =simple_form_for( :identity, ...
2
votes
0answers
78 views

Set different facebook oauth scope per user with devise

I have a rails app with two separate types of users (call them A and B). Right now they can both sign in with facebook. However, I need B to be able to oauth with some extended permissions, and I DO ...
2
votes
0answers
64 views

Creating Rspec tests with Omniauth

Rails noob here. I'm having trouble understanding how/what to test for regarding authentication with Omniauth-Facebook. Pretty much have a similar setup to the relevant railscast. And have the test ...
2
votes
0answers
134 views

Linked In authentication and aggregate data

I'm building a web app with Ruby on Rails and I want my users to authenticate and aggregate data from Linked In (and others like Github, Twitter, etc...). I am using these gems: Devise for ...
2
votes
0answers
151 views

Session variable not initialized on callback from OmniAuth OpenID

I need to allow users of my application to associate an OpenID with their account after they are already logged in. In the last controller visited before I defer to OmniAuth, I set the user ID to the ...
2
votes
0answers
55 views

Omniauth and Web2py

I have a complex application built with web2py but I would love to use the power of omniauth to connect with Gmail, Google Apps, twitter, etc.. Does anybody know a way to handle authentication with ...
2
votes
0answers
168 views

Getting “undefined method `env' for nil:NilClass” in integration test for OmniAuth

I have Omniauth test mode on: spec_helper (I put it at the bottom of the file, right before end): #Turn on "test mode" for OmniAuth OmniAuth.config.test_mode = true and this is my test: ...
2
votes
0answers
124 views

Omniauth authorization call with Ajax

I have omniauth working fine in my Rails 3 app when using it as a link: link_to("Connect Twitter", "/auth/twitter", :id => "connect-to-twitter") Now I want to call '/auth/twitter' through ajax. ...
2
votes
0answers
265 views

sinatra, omniauth, launchpad.net strategy unable to get request token

I'm attempting to pull a request token via https://launchpad.net using sinatra, and a custom omniauth strategy require 'omniauth-oauth' ...
2
votes
0answers
277 views

omniauth and linkedin => 401: OAuthProblemException while parsing OAuth request

I'm using the omniauth and omniauth-linkedin gems for general OAuth functionality, but I'm not able to make them play nice with the linkedin gem, even when calling authorize_from_access as per this ...
2
votes
0answers
391 views

Heroku's Facebook Canvas app tutorial: oath error

I'm copy and pasting the code from Heroku's tutorial about building a canvas app to host on Heroku seen here. https://devcenter.heroku.com/articles/facebook-ruby However, I'm getting this error ...
2
votes
0answers
124 views

Omniauth: Using multiple SNS applications of the same provider for one web app

Say I have n subdomains all manages inside the same web app. 'http://web.app/a/', 'http://web.app/b/' etc... I want to use a Facebook login button (twitter as well by the way) for each subdomains ...
2
votes
0answers
224 views

Omniauth: env['omniauth.origin'] not available when using OmniAuth.config.full_host

I have a situation where my production rails 3.2 app runs on multiple domains. I am setting up omniauth authentication (version 1.1.0, also using devise 2.1.0 if it matters) to work across these ...
2
votes
0answers
312 views

Facebook canvas app with rails3

I'm writing facebook canvas application with Rails3 using omniauth-facebook gem. The few moments are not clear: Rdirect after sing in (in '/auth/facebook/callback' => 'session#create'): After ...
2
votes
0answers
272 views

Post request spec results in 401 unauthorized for omniauth-facebook & devise

I'm working on a Facebook app and using devise and omniauth-facebook for authentication. I followed the wiki pages to set it up and also using OmniAuth.config.add_mock(:facebook, @omniauth_hash) for ...
2
votes
0answers
216 views

Rails 3 : (Devise + Omniauthable) Facebook app_request return query string parameter how I can grab it?

How I can grab the query url parameters coming from a callback from Facebook? I am using devise + omniauthable, and everything works perfectly. I just don't have any idea how to access those ...
2
votes
0answers
217 views

OmniAuth + Rails 3 + Cucumber - undefined method `test_mode!' for Devise::OmniAuth:Module (NoMethodError)

When I run the command 'cucumber' in my new Rails 3.1 project I am getting the following error: undefined method `test_mode!' for Devise::OmniAuth:Module (NoMethodError) here are my gems: group ...
2
votes
0answers
122 views

Set a password after creating an account with Omniauth (Rails + Devise)

How can I let users set passwords once they create an account through Omniauth? Omniauth creates a stub password during registration, but the user does not know what that password is, therefore cannot ...
2
votes
0answers
282 views

“Missing template” error in Omniauth (ruby-on-rails)

I'm using OmniAuth for Facebook Authentication, and I keep getting this error: Missing template authentications/index with {:handlers=>[:rjs, :rhtml, :builder, :rxml, :erb], :locale=>[:en, ...
2
votes
0answers
191 views

recaptcha not working on rails3.1

I am working on a new rails project and using device and omniauth recaptcha gem and i keep getting this message "cannot reach recaptch " my controller code is as follows def create if ...
1
vote
0answers
10 views

Unicorn and omniauth-facebook - uninitialized constant OmniAuth

So I am trying to get omniauth-facebook to work in my production env. It works fine locally on my machine using POW. My prod env is ubuntu with nginx/unicorn and code is Rails 3.2.13, the errors ...
1
vote
0answers
20 views

Rails login and registration by facebook using 'omniauth-facebook' how get language , education , work and other of an users

I use devise for the users and 'omniauth-facebook' so in my user.rb i have write this function: def self.find_for_facebook_oauth(auth, signed_in_resource=nil) user = User.where(:provider => ...
1
vote
0answers
34 views

Sometimes “The specified feature has been temporarily disabled for this application”

it sometimes returned : {"error_code"=>"2000", "error_message"=>"The specified feature has been temporarily disabled for this application", ...
1
vote
0answers
34 views

Rails, OmniAuth, google_oauth2, google-api-client, Moments.insert… 401 unauthorized… why?

I haven't been able to find an answer to this online -- aside from using the Google+ Sign In button, which I don't want to use at this point because I don't want to get into Javascript if I don't have ...
1
vote
0answers
23 views

Omniauth with pow port issue in Rails

I'm using Omniauth in my Rails app (which is launched locally using POW). After my providers return to the callback action, I get redirect back in port 19999. I don't want to hard code the port into ...
1
vote
0answers
143 views

Facebook login error: Refused to display in a frame because it set 'X-Frame-Options' to 'DENY'

I built a website with Ruby on Rails and want to use the facebook login. Using the Ominauth-Facebook gem, I am enable to log in on my computer. But when several friends tested it, they all got the ...
1
vote
0answers
34 views

Rails Devise: detecting login method of the FB / Linkedin / local user

I'm using Devise with Omniauth gems for Facebook and Linkedin logins. My app allows users to login with FB / Linkedin and local credentials. Is there any good way of detecting how the current user ...
1
vote
0answers
87 views

ArgumentError in AuthenticationsController - wrong number of arguments (3 for 1)

I'm trying to get users to successfully log in using a provider but I'm getting this error. The user is getting created successfully but this error message prevents the user from getting to the signed ...
1
vote
0answers
20 views

How to access “extra” Hashie in omniauth-facebook callback

In a Rails app I had the following code updating the user's profile from their Facebook profile self.update_attributes( :location => request.env["omniauth.auth"].extra.raw_info.location.name ) ...
1
vote
0answers
59 views

Rails Google OAuth2 + Devise - Could not authorize you from Google oauth2 because “Timeout”

So I've been working on the Google API for a long while now going through this tutorial I found on the internet: https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview and it almost worked ...
1
vote
0answers
25 views

GoogleReaderApi gem says something went wrong

I'm using omniauth-google-oauth2 gem to authenticate users in my web applications. So now I want to provide for my users possibility to manage goole reader feeds from my app. I'm trying to use ...
1
vote
0answers
19 views

Rails route namespaced in omniauth

I have this in routes.rb: namespace :api do namespace :v1 do ... devise_for :users, constraints: { format: :json }, :controllers => { :omniauth_callbacks => "auths" } ... ...
1
vote
0answers
52 views

Devise, Omniauth and multiple models with STI

I have an application setup with devise authentication using sti (base user model and two other models - company and individual - inheriting from it). From a devise perspective, everything is working. ...
1
vote
0answers
152 views

minitest testing and code coverage

I use mini-test for testing framework. I use omniauth gem for authentication. I use simplecov for code coverage. I run my tests using "bundle exec rake" or "rake minitest:controllers". I give an ...
1
vote
0answers
47 views

How to fake user on staging environment with omniauth and devise

I use the developer provider for omniauth (with devise and rails 3) on local development environment and several provider on production. For the staging environment (manual integration test system) I ...
1
vote
0answers
69 views

password_digest error

i use omniauth-identity for authentication on my project. i lso use mongodb for database.my identity model is like below: class Identity include Mongoid::Document include ...
1
vote
0answers
69 views

How to check if google user has already made an account with my site?

In my site users are able to sign-up with their google accounts. I am able to do that just fine and I store their access token and when the access token expires. Also I get a new token if their ...
1
vote
0answers
47 views

using has_secure_password and oauth (such as facebook) authentication

I am interested in using both of these authentication schemes but setting the user model to has_secure_password forces a validation on password_digest. I am curious if there is a standarized way for ...
1
vote
0answers
50 views

devise_invitable + omniauth-identity

I have been developing application that was implemented by omniauth-identity for users authentication process but Now I need to implement invite users strategy where I would like to integrate ...
1
vote
0answers
273 views

Devise/Omniauth test failing: No route matches {:controller=>“omniauth_callbacks”, :action=>“passthru”, :provider=>:facebook}

I am using Devise 2.2.0 and omniauth 1.1.1 under rails 3.2.11. I have a test on an un-authenticated (e.g. no "before_filter :authenticate_user!") controller called "HomepageController" with an action ...
1
vote
0answers
61 views

Rails with authlogic and omniauth

I've seen quite a few tutorials, and I've completed a few implementations of simply 'connecting' social accounts to authlogic using an authorizations model. But I'm having trouble coming across ...
1
vote
0answers
171 views

How do I make a custom login form for Omniauth with Devise?

I am using Omniauth as my only authentication, there is no :database_authentication on my model. I want to login through Atlassian Crowd using this gem: https://github.com/robdimarco/omniauth_crowd ...
1
vote
0answers
122 views

Linkedin skills data using omniauth

I am trying to fetch linkedin data of user using omniauth and omniauth-linkedin. For skills I am getting data like #<Hashie::Mash id=16 skill=#<Hashie::Mash name="AJAX">>, ...
1
vote
0answers
69 views

Stay logged in with Facebook Connect and iPhone

I use Facebook Connect (and the OmniAuth gem) for authenticating users on my Rails website. On my desktop - users can stay logged in across browser sessions. But accessing the same site from within my ...

1 2 3 4 5 9