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

learn more… | top users | synonyms

2
votes
2answers
401 views

Omniauth-facebook popup authentication does not return omniauth.auth

I have struggled with this for 2 days now: I have Omniauth-factbook implemented correctly with Devise. Now, I want to improve it by making the Facebook authentication occurs in the popup window ...
0
votes
0answers
24 views

Adding Omniauth information to session in Rails

I am implementing a custom sign up process with different services (linkedin, facebook etc.) using Devise and Omniauth: If user clicks "Sign up with twitter", Omniauth will redirect to /auth/twitter, ...
0
votes
1answer
172 views

Passing additional params to Devise new_user_session_path

I am trying to implement Devise and Ominauth for multiple providers. One scenario is: user sign in with Twitter for the first time without creating an account first. To handle this, I redirect user ...
0
votes
0answers
36 views

intercepting Omniauth callback with javascript in Rails

I am trying to implement Omniauth and Devise with multiple providers in Rails 3.2 app. One tricky scenario is: user signs in via LinkedIn for the first time. Since linkedin does not provide user ...
2
votes
0answers
78 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 ...
1
vote
1answer
150 views

Devise with Omniauth. Could not authenticate because “Invalid credentials”."

I am having trouble integrating Devise with an Omniauth provider. I have Doorkeeper set up on an external server however it was returning Invalid credentials when it returned to my local application ...
1
vote
0answers
77 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 ...
8
votes
2answers
379 views

Rails omniauth-facebook unsolved issue

The current omniauth-facebook seems to have some issues, and I want to know if anyone has answers to them. First issue was the invalid credentials problem. I couldn't log in to my application using ...
0
votes
1answer
624 views

Gem dependency conflict

I have run into a similar issue as a previous question, that was posted over a year ago. How do I fix this gem dependency problem in Rails 3 (bundler)? I am new to ROR. When trying to run bundle ...
0
votes
0answers
79 views

Omniauth Twitter - No redirect after login

Rails 3.2.11 Omniauth 1.1.3 Omniauth-facebook works but Omniauth-twitter not with the same code. Setup is minimal like in https://github.com/railscasts/241-simple-omniauth cast. After ...
1
vote
0answers
52 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 ...
0
votes
2answers
208 views

Facebook Authorization on Rails app: why do we need to do Both server and client side authorization?

In Ryan's Railscast on Facebook authorization, he adds some Facebook SDK javascript at the end to "degrade facebook client side authorization with server side authorization." However, I do not see the ...
0
votes
0answers
76 views

Spree-social and omniauth

I am new to ruby and have spree-ecommerce application on spree .70 . I am trying to add Facebook Authentication using spree-social. Install request fails , when I follow exact steps. Here is what I ...
0
votes
1answer
48 views

Share session between 2.3 and 3.2 app

I have an app written in rails 2.3. This app uses devise for authentication. I'm on the need to create a SSO with some other projects, like Worpdress. Because newer versions of devise includes ...
1
vote
0answers
61 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 ...
3
votes
2answers
129 views

Multiple, Simultaneous Oauth in a Rails Application?

My end goal is for users to have multiple 3rd party authentications at the same time. Right now, I am using Devise to create users. Users can sign up via email or facebook or google and it works. ...
1
vote
1answer
27 views

Routing Test Fails with Matched Route

I have this line of code in my routes namespace :api, defaults: {format: 'json'} do namespace :v1 do match '/auth/:provider/callback', to: 'sign_in#authenticate' end end And my test as ...
0
votes
0answers
36 views

Usual method of applying remember me and OmniAuth?

So, I have a remember me check box in the signin form (session create action): sessions_controller.rb: def create user = User.find_by_email(params[:session][:email].downcase) if user && ...
0
votes
0answers
44 views

can't set session after callback from twitter omniauth

Rails: 3.2.9 Omniauth: 1.1.1 I got following error when i try to set "session[:abc] = 'abc'" in callback method. NoMethodError (undefined method []=' for nil:NilClass): ...
1
vote
2answers
61 views

Authentication from scratch - How safe are the cookies from being tampered with?

Am attempting to do authentication from scratch, using Omniauth. I followed Ryan Bate's screencast. But before I roll out an implementation, I'd like to understand a few things. In his screencast, ...
0
votes
0answers
42 views

Accessing custom AX attribute/schema with Omniauth-openID

I have OpenID login with Omniauth-openid working well, however the provider I'm authenticating against has a few custom AX attributes that I need to access and I can't figure out where I tell Omniauth ...
1
vote
1answer
105 views

Google OAuth won't accept its own client_id

I have an app that already successfully uses google oauth, but now I am trying to setup a staging deployment. It is a rails app with devise and omniauth, but I think there might be a problem with how ...
1
vote
1answer
213 views

ActiveRecord Error: Couldn't find User without an ID

I've been building a web app that allows users to sign in with Facebook and then redirect to their profile feed. If the user does not exist, a new record will be created with their Facebook ...
0
votes
0answers
95 views

Am not getting the request.env['omniauth.auth']['credentials'] OR request.env['omniauth.auth']

Am using omniauth facebook, am not getting the hash of omniauth.auth, after raise params[:auth], instead am getting accessToken, signedRequest, userID What am i doing wrong, can u people please help ...
0
votes
1answer
137 views

Bundle install error with “omniauth-oauth2”

Running bundle install I get the following error (full trace: http://pastebin.com/Vp4nHc2p): Bundler could not find compatible versions for gem "omniauth-oauth2": In Gemfile: omniauth-facebook ...
0
votes
0answers
116 views

Request Google Contacts After Successful Omniauth Authentication Rails

I am having trouble figuring out how to make a request to the Google Contacts API after a successful authentication. provider :google_oauth2, "key", "secret", :scope => ...
1
vote
2answers
111 views

Google Omniauth - Remember user authorization after finished session

I am using omniauth for login and I'm wondering how I can store the user's credentials so that after they close the browser and the session has ended OR decide to log out -> they do not need to "Allow ...
0
votes
0answers
51 views

login to app with facebook token only using rails and omniauth

Is there any way I can create/log in user with omniauth gem if I know only his facebook token? I have token saved in database for users wich already logged in before from my app, but the token goes ...
1
vote
1answer
177 views

Facebook login with devise for rails doesn't return a real email

I've followed the tutorial on the wiki at devise to enable facebook login using omniauth-facebook gem. It works and signs the user in and even creates an account however theres one issue here. The ...
0
votes
1answer
361 views

Rails Facebook Omniauth Faraday Error

I have a OS X 10.8.2 with ruby-1.9.3-p374 and rails 3.2.11. I have followed the #360 Facebook Authentication guide on rails cast but when i try to sign in i receive the error: ...
0
votes
1answer
295 views

Omniauth Authentication Failure Callback Handling

I am using omniauth and omniauth-identity for authentication via Google, Facebook, and traditional username/password. I have it all pretty much working nicely except for the case where authentication ...
0
votes
0answers
60 views

tmp Directory not being Generated causing Devise to cause Exception in Production

ERROR An Errno::ENOENT occurred in #: No such file or directory - /tmp/temp/tmp20130206-5258-d0qs92.lock > /root/.rbenv/versions/1.9.3-p327/lib/ruby/1.9.1/tempfile.rb:346:in > `rmdir' ...
0
votes
0answers
101 views

Using omniauth-linkedin for educations, skills, connections

I'm using omniauth-linkedin gem in Rails and trying to get data from 'r_fullprofile' and 'r_network'. In omniauth.rb: provider :linkedin, 'consumer_key', 'consumer_secret', :scope => ...
0
votes
1answer
113 views

Facebook authentication not working with custom callback path

I'm using devise / omniauth to authenticate my Rails app against Facebook. I'm trying to change the callback_path to be something custom, but no matter what I set it to, the omniauth.auth request ...
2
votes
1answer
237 views

undefined method 'change' for :Fixnum when updating Timestamp value

I'm using Google's OAuth2 API in a project, using Omniauth to enable creating the initial accounts with little effort, but in order to use the APIs I need to refresh the access_token since they're ...
0
votes
0answers
118 views

Omniauth-facebook :scope not working

I have the following code however it doesn't seem like the permissions in :scope is being requested. I also have the facebook app set up properly. Is there something I'm missing here in code where the ...
0
votes
1answer
44 views

Facebook signed in user in rails how to access its information and get subscriptions

I'm usign omniauth to login user from facebook and I'm also using devise gem so in my devise.rb initializer file. I added config.omniauth :facebook, app_id, app_secret, {:scope => 'email, ...
0
votes
2answers
417 views

OmniAuth-Facebook : This authorization code has been used

I'm using Omniauth-Facebook to create and authenticate User. For the two first users, it worked well. But it fails for the third one. BUT, I still can authenticate, it's the CREATE processe which ...
1
vote
1answer
436 views

The action 'facebook' could not be found - devise/omniauth

I'm trying to implement facebook authentication in my app following this guide After authorizing on Facebook I get the following: Unknown action The action 'facebook' could not be found for ...
0
votes
1answer
110 views

Omniatuh Devise Twitter Not sending user back to Site

I'm following Ryan bates cast #225 devise and omniauth revised...once i click the link sign up with twitter it takes me to the ...
4
votes
2answers
379 views

Use separate authentication model with Devise on Rails

I have a simple solution I've made myself with the following objects: Account (has token field, that is returned when authenticating and used in API calls) Authentication (has auth_type/auth_id and ...
1
vote
1answer
62 views

render current_page after connect with facebook rails [closed]

I have blog app, and users can comment on blog if already logged in connect with facebook, I'm using omniaut-facebook gem. I put a link connect w/ facebook on any localhost:3000/blogs/:permalink how ...
0
votes
2answers
179 views

How do i solve FbGraph::Unauthorized: OAuthException :: (#200) The user hasn't authorized the application to perform this action

I am getting error FbGraph::Unauthorized: OAuthException :: (#200) The user hasn't authorized the application to perform this action.My omniauth.rb look like this: ...
3
votes
1answer
135 views

How to reset omniauth-google-oauth2 access_token when user account has been removed

We have this ROR application that uses omniauth-google-oauth2 with devise to sign in users. We are encountering an issue where if the user's account has been deleted from system after the user already ...
0
votes
1answer
161 views

refresh token using omniauth salesforce

This is a ruby question using omniauth-salesforce. I have omniauth 1.1.1 and omniauth-salesforce 1.0.3, and I can get user authenticated. However no refresh_token is returned by default. I only get ...
0
votes
0answers
27 views

Strange links with will_paginate and omniauth

I'm using the Omniauth Facebook gem and Will_paginate on a rails 3.2 app. On user profiles and only user profiles the next page url seems to be picking up a url from Omniauth. The next_page link is: ...
0
votes
1answer
62 views

Long delay on omniauth callback

OmniAuth (Facebook and LinkedIn) was working for me for months. Without any code change, I started seeing a very long delay on the callback from Facebook/LinkedIn. It now takes about 40 seconds ...
0
votes
0answers
127 views

Box API with new omniauth-box gem not redirecting to my app (ERROR Errno::ECONNRESET: Connection reset by peer)

I created a gem to work with Box API V2 (https://github.com/youpdidou/omniauth-box/). I tested it in development. The authentication is created as needed and recorded in DB, but there is an error in ...
0
votes
1answer
115 views

Omniauth twitter login doesn't work

I am using omniauth to login with twiiter/facebook account in my site. It works great with facebook but it doesn't work with twitter. On checking log I found that twitter API doesn't send user email ...
0
votes
1answer
32 views

How to launch site for beta testing if using Omniauth

I have a rails site that I'm ready to launch for beta testing and am wondering what the best way to do it is. We currently use FB connect via omniauth to register users but I want to limit ...

1 3 4 5 6 7 24