0
votes
1answer
17 views

Omniauth callback processing after authorization

In my Rails app, I have user and authorization tables to handle users and auth data. I set up both Devise and Omniauth to use Twitter to sign up, it redirects to Twitter, but after returning to my ...
2
votes
1answer
45 views

Rspec: Test redirects in Devise::OmniauthCallbacksController subclass

Following the Railscast on Devise and OmniAuth I have implemented an OmniauthCallbacksController < Devise::OmniauthCallbacksController which contains a single method to handle an OmniAuth callback: ...
0
votes
0answers
25 views

Rails Devise facebook authentication asking for email - how to stop this?

I'm using facebook login with devise with only standard initializers (no scope): │FB.login (response) -> if response.authResponse window.location = '/auth/facebook' But yet when I go to ...
0
votes
2answers
39 views

Bad redirect from Omniauth / Devise on Failure

Currently my app is setup to use Omniauth and Devise with Twitter and Facebook. My problem is when a user presses cancel on Twitter or Facebook doesn't authorize it sends me back to devises ...
1
vote
1answer
32 views

Using Omniauth on Rails, how do I change the URL?

Currently I have these two routes in my rake routes output: user_omniauth_authorize /users/auth/:provider(.:format) devise/omniauth_callbacks#passthru {:provider=>/facebook|twitter/} ...
1
vote
1answer
87 views

Rails 4: devise and omniauthable error

I use devise and omniauth in my Rails 4 app. I did all actions from this page (from answer): Devise, Omniauth and Facebook integration session error After adding this :omniauthable into this string ...
0
votes
1answer
83 views

google oauth fails with 401 unauthorized in rails omniauth

I am trying to authenticate with google oauth2 using devise and omniauth. I set up the call backs religiously as specified in omniauth documentation and am even using the same exact code. ...
0
votes
1answer
37 views

The action 'google_oauth2' could not be found for Users::OmniauthCallbacksController

I'm using 'omniauth-google-oauth2' for sign in with google and follow all instruction here carefully https://github.com/plataformatec/devise/wiki/OmniAuth%3A-Overview but i have error above. my ...
0
votes
1answer
24 views

The action 'google' not found for Users::OmniauthCallbacksController

i'm using omniauth-google for login with gmail. It is give me an error action "google" couldn't be found. while i have define it in "Users::OmniauthCallbacksController" like below. def google ...
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 ...
0
votes
0answers
20 views

how to set email_required = false on signup with omniauth-twitter

In a Rails 3.2 app I'm using Devise on a User model, with omniauth-twitter. A User has many Authentications. Login is via email + password, or via Twitter. I'm trying to modify the email_required ...
0
votes
1answer
58 views

rails , devise omniauth, multiple app_id ,app_secret

How to manage different APP_id,APP_KEY, in Devise.rb . using Devise omniauth with for multiple subdomains?
0
votes
2answers
44 views

Adding Facebook Authentication to Rails Custom Authentication

I am currently creating a rails application that requires authentication. Currently, I'm doing custom authentication like that shown in in the following railscast episode: ...
0
votes
0answers
28 views

recaptcha with omniauth and devise: Logins are validated even when Captcha is wrong

I have a rails setup with recaptcha, devise and omniauth (setup to use facebook as a provider) and recaptcha is working fine for Registration. However, it is not working for Login. I did find an ...
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 ...
0
votes
1answer
45 views

Omniauth with Devise - Handling invitation scenarios

I'm integrating Omniauth and Devise into my first ever ruby on rails application. Currently working the google. It works, and I love it all. I can successfully register by clicking a link in my ...
1
vote
1answer
71 views

Facebook APP Multiple Domains

I am setting up a Ruby on Rails app to allow login via Facebook with Devise + Omniauth. I can got this working no problem with the APP ID and Token. However I am having an issue that I am not sure ...
0
votes
0answers
23 views

Devise Omniauth controller renders 404

First scenario Controller class Api::V1::AuthsController < Devise::OmniauthCallbacksController def twitter; end private def callback user = ...
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" } ... ...
0
votes
1answer
34 views

Devise ignores client_options authorize path

I am using devise on rails 3.2 in combination with twitter as an omniauth strategy. In order to login returning users without authorizing the app again I would like to make use of twitters ...
0
votes
0answers
46 views

rails omniauth authentication

I am using rails 3.2 and omniauth with twitter as strategy. The login link points to the twitter login page where the user has to authorize my site. This step is done every time the user signs out ...
0
votes
0answers
42 views

Change Devise default route from provider method to create method in controller while using Omniauth

I'm trying to use Devise and Omniauth to allow a user to sign in to multiple providers with a Rails 3.2 app. I got it to work but only if it goes to a twitter, facebook or tumblr method in the ...
2
votes
1answer
212 views

omniauth google-oauth2 with devise - invalid_credentials and “Csrf detected”

Dear Fine People of SO: I'm developing a Ruby app on Rails 3.2.12 (and I'm still new to it). I'm trying to get Devise working with Omniauth... the first strategy I'm trying is Google_oauth2. I ...
0
votes
1answer
78 views

The form with required fields in omniauth registration. (Ruby on Rails)

I have Rails application with gem devise + gem omniauthn (multiple providers). I followed to this tutorial: http://blog.yangtheman.com/2012/02/09/facebook-connect-with-rails-omniauth-devise/ (example ...
1
vote
1answer
61 views

custom image size into devise + facebook-omniauth

I'm using mongoid, rails 3.2.10 and omniauth on devise.. and trying to set up custom image_size of facebook profile image url config.omniauth :facebook , API_KEYS['facebook']['api_key'], ...
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. ...
0
votes
1answer
29 views

Prompting for User Name with Omniauth-Facebook

I'm using Devise with my Rails app and I'm looking at using the Omniauth-Facbook gem. My app has views that show the users's by user name. What I haven't been able to figure out is how I can prompt ...
-1
votes
1answer
70 views

Allow Existing Users to Add Facebook Accounts

In my app, users can login with Facebook using the code from this tutorial. The only issue is I want to allow users who signed up for my app the old fashioned way (As in users go to the signup page ...
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 ...
0
votes
1answer
38 views

ActiveRecord::StatementInvalid in AuthenticationsController#create

I've almost got Omniauth w/ twitter working, however when it attempts to re-direct me to my app after validating twitter credntials I get the following long-winded error: ...
0
votes
1answer
104 views

Devise Omniauth callback error

I have a web application running Devise and Omniauth to authenticate a user on Facebook. When I click on a link to log in though Facebook, it routes me to ...
0
votes
0answers
44 views

Invoke Omniauth authentication asynchronously

I have Devise and Omniauth set up correctly. However, I would like to invoke omniauth via an ajax call. Because I have jquery-js installed, and I use jquery_ujs, I add this to my view: = link_to ...
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 ...
0
votes
2answers
93 views

Constraint failed during the OmniauthCallbacksController

I'm quite new with Ruby on Rails, so please bear with me. I want to user to be able to sign in through Facebook. I've followed the railscast #265 Devise and OmniAuth (revised). In the railscast the ...
2
votes
2answers
311 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
23 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
127 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
34 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 ...
1
vote
1answer
134 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 ...
3
votes
2answers
99 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
2answers
83 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
170 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
0answers
59 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
1answer
106 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 ...
0
votes
1answer
315 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
93 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
297 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 ...
0
votes
0answers
51 views

Restrict Devise Routes

I want my application to authenticate the user only from a certain provider. So in my routes.rb file I have this: devise_for :users, :controllers => { :omniauth_callbacks => ...
0
votes
1answer
94 views

How to merge facebook account into existing account with Devise

I followed the steps here and was running into some problems in merging the accounts Based on the instructions, I added the following method to my ApplicationController def ...
2
votes
2answers
128 views

Sign in with Devise, Omniauth and SoundCloud

I'm trying to sign in my Rails application using Devise and Omniauth. I've already installed omniauth-soundcloud and omniauth gems. I've created an application in Soundcloud with: name: sitename url: ...

1 2 3 4 5 7