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

learn more… | top users | synonyms

0
votes
0answers
10 views

Can I specify the version of openssl with omniauth, oamiauth-openid

My Env. rails (4.0.0.rc1) oauth (0.4.7) oauth2 (0.8.1) omniauth (1.1.4) omniauth-oauth (1.0.1) omniauth-oauth2 (1.1.1) omniauth-openid (1.0.1) I want to use openid connection with SSLv3, however ...
1
vote
1answer
30 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 ...
0
votes
1answer
14 views

Rails OmniAuth NoMethodError with Facebook

I've been following this tutorial for setting up OmniAuth with facebook, however when I try to run /auth/facebook, I get an error as follows: NoMethodError in SessionsController#create undefined ...
0
votes
0answers
19 views

Prevent redirections when using Omniauth Registration

I am using Omniauth to authenticate my JSON API. After submitting to /auth/identity/register, I want to return the results without redirecting the user. How can this be done? In order to allow ...
0
votes
1answer
24 views

TFS Java SDK - Oauth credentials

I have tfs server and I expose nice interface for the users login and perform operations on the TFS Server. The tfs sdk requires me to write the username and password as plain text, I get the ...
1
vote
0answers
56 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 => ...
0
votes
1answer
33 views

why is omniauth initializing twice?

I am attempting to add facebook authentication to my site. So far I've added: Gemfile gem 'omniauth-facebook', '1.4.0' config/initializers/omniauth.rb Rails.application.config.middleware.use ...
0
votes
1answer
34 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 ...
0
votes
0answers
178 views

Oauth2 Instagram API “redirect URI does not match registered redirect URI”

I am working on a Rails application which is in development mode and it can register with omniauth. The host is http://localhost:3000/ I'm using the gems: gem 'omniauth' gem ...
1
vote
1answer
32 views

Ruby github client

I want to get Json data from Github resume, of the user who login's into my website using "Omniauth-Github". I used github_api, but could not find any method for it. Can anyone help me with gem or ...
4
votes
0answers
121 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
113 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 ...
2
votes
1answer
108 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
1answer
59 views

Omniauth + OpenID in Ruby: Google OpenID authentication in a popup

Using the omniauth and omniauth-openid gems in Ruby and am looking for a way to have a pop up window during authentication. According to Google's OpenID docs ...
3
votes
2answers
108 views

“omniauth-twitter” email id is not fetched from twitter in ruby on rails

i am using omniauth-twitter gem to enable Twitter login in my rails application. Here is my code ... gemfile - gem 'omniauth', '~> 1.1.1' gem 'omniauth-twitter' routes.rb - match ...
0
votes
0answers
33 views

OmniAuth hash returns undefined method

This is probably a very basic question but I have been looking at the code for quiete some time now and am not really understanding what is causing the no method error. In my controller I have this ...
0
votes
1answer
34 views

Omniauth Facebook Ruby on Rails image_size

I am retrieving the data from the Facebook from like this. I want to get the image in a specific width and height, how can I do it? class User < ActiveRecord::Base attr_accessible :password, ...
0
votes
0answers
68 views

scope not working for omniauth-facebook gem

I am using the omniauth-facebook gem (version 1.4.1) in a Rails 3.2.11 app. My code in config/initializers/omniauth.rb looks like Rails.application.config.middleware.use OmniAuth::Builder do ...
0
votes
0answers
34 views

not able to persist username using twitter omni-auth in ruby on rails application

I am trying to implement omniauth twitter to authenticate user using twitter in my application. When I try to "login with twitter", It takes me to "Authorize App" twitter page. When I click "Authorize ...
1
vote
1answer
62 views

Rails: omniauth-google, how to bypass login?

I am implementing a comment functionality to my blog that I created using Ruby on Rails, so that users can write comments on blog posts using their Google account. I added Omniauth so users can login ...
0
votes
0answers
33 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
0answers
45 views

Why is google_oauth2 via omniauth hanging/stalling during callback?

I've just implemented omniauth and using google and Facebook providers. They both are working but periodically (way too often) the google authentication callback just hangs motionless. After a while, ...
0
votes
0answers
46 views

LoadError in Articles#index cannot load such file — omniauth for twitter authentication in ruby on rails

I am trying twitter authentication for my blog. I have already implemented Devise in my application. So I am following http://railscasts.com/episodes/235-devise-and-omniauth-revised video. When I ...
0
votes
2answers
54 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 ...
0
votes
1answer
65 views

OmniAuth connection failed with facebook callback

I'm using the OmniAuth GEM and have successfully got it working with the twitter strategy. I am now trying to set up the ability for users to also use there facebook login. I got it to the point ...
1
vote
0answers
28 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
1answer
47 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/} ...
2
votes
0answers
331 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 ...
2
votes
0answers
83 views

Omniauth-facebook rails 3 => invalid credentials error

I am using omniauth-facebook gem in my rails app to authenticate with facebook. Everything worked fine, but recently i have "invalid credentials" error in my production server. (in local it still ...
0
votes
0answers
15 views

How can I use omniauth-oauth with the freelancer API?

I'd like to use Ruby on Rails with the Freelancer API. Freelancer API Freelancer Auth Overview I assume I need to build a custom strategy using this document as a reference: Omniauth-oauth But, I ...
0
votes
1answer
26 views

Scoped Omniauth routes

Is it possible to scope omniauth paths to a resource? For example, let's say we have an arbitrary website building website, where I can scope the website in routes via something like: get ...
1
vote
1answer
187 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
2answers
108 views

oauth-twitter is returning undefined method 'gsub' for nil:NilClass

I have a production app on heroku that relies on devise/oauth for login though either Facebook or Twitter. Login was working fine last night, but as of this morning, I can't login through twitter ...
0
votes
0answers
69 views

Why is OmniAuth google oauth2 client_id not being passed during authentication

I am using the following gem https://github.com/zquestz/omniauth-google-oauth2 for allowing users to sign in using their google account. My rails initializer looks like this. ...
0
votes
1answer
145 views

Rails: Could not authenticate you from Facebook because “Invalid credentials”

I integrated omniauth-facebook using https://github.com/plataformatec/devise/wiki/OmniAuth%3a-Overview. But I am getting error of : Could not authenticate you from Facebook because "Invalid ...
0
votes
1answer
142 views

Omniauth Nginx Unicorn callback to wrong host URL

I've deployed a Rails app to a VPS server, and I'm using the Nginx/Unicorn combo, everything works fine, except that for some reason beyond my understanding, the Omniauth callbacks redirect wrong, ...
0
votes
1answer
64 views

How to read value from params array in omniauth-twitter

I am saving my omniauth in auth variable as follows auth = request.env["omniauth.auth"] When I inspect it as follows puts auth.inspect It gives me #<OmniAuth::AuthHash ...
0
votes
0answers
49 views

Why Does Omniauth-twitter Work Only When I Uncheck “Sign In With Twitter”?

This post is about Ruby on Rails development with social media log in functionality implemented by Omniauth. This seems a little counterintuitive, but why Omniauth (Omniauth-Twitter) doesn't work if ...
0
votes
1answer
71 views

Omniauth Stripe Connect – How Can I Add Scope?

I'm using the Omniauth Stripe-Connect gem and I'd like to add a scope, but the documentation does not cover this. Here's what I'm trying right now, but the scope and stripe-landing parameters are not ...
0
votes
1answer
22 views

OmniAuth bundle install error

I'm trying to use omniauth with a new project. I'm using it on other projects on my computer with no issues. 'gem list' confirms: rails 3.2.9 omniauth 1.1.4 Everything is fine until I bundle ...
0
votes
1answer
31 views

How do I configure omniauth use memcached as a backing store with google in classic sinatra app?

I am attempting to debug an issue where doing oauth with Google when there are multiple app servers behind an EC2 ELB is failing. I believe the issue is related to the fact that the oauth backing ...
0
votes
2answers
42 views

Controller not saving attribute (Oauth Token from FB)

Weird problem - the create action in one of my controllers is not saving an attribute - check out the code below. All of the lines work until the last 2. The oauth_token and the oauth_expires_at are ...
0
votes
0answers
38 views

FB does not return email/birthday with email and user_birthday permissions granted

I'm using omniauth-facebook and FB Javascript SDK to do FB signup/login. The code asks for email and user_birthday permissions, so I assume that I could always get email and birthday. But the problem ...
0
votes
1answer
32 views

Updating data of users authenticated via OmniAuth

I have a Rails app using the Omni-Auth GitHub gem. User account creation and signin via GitHub works flawlessly! Here's my User model: def self.from_omniauth(auth) ...
0
votes
1answer
111 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
92 views

NoMethodError in SessionsController#create using Omniauth Facebook authentication railscast 360

Hi there I am currently following railscast 360 on adding Facebook authentication to my webapp. It was all going well until I started getting this error: "NoMethodError in ...
0
votes
2answers
64 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
0answers
60 views

Heroku - “Something went wrong”: undefined method “image”?

Everything works fine locally so I pushed the code onto heroku but I get this error when I try to authenticate users using Twitter. I'm using omniauth for the authentication. schema.db create_table ...
0
votes
1answer
34 views

What is the minimum set of permissions when using Facebook login with omniauth?

I am using omniauth-facebook 1.4.1 with Ruby on Rails 3.2.8 I want users to be able to authenticate using their Facebook account. All I need from them is their email address or first name. How do I ...
0
votes
1answer
28 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 2 3 4 5 24