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

learn more… | top users | synonyms

0
votes
1answer
23 views

401 Unauthorized using OmniAuth-Twitter

I am getting a 401 Unauthorized when trying to implement the OmniAuth-Twitter gem into my rails app in Development I have read several posts saying the server times are mismatched. The error comes ...
0
votes
0answers
21 views

Remove need for encrypted password for twitter logins

I’d like to know how I can create a new user using a twitter account with devise (and omniauth) and not require an “Encrypted password”? I was able to remove having to provide a password by adding ...
0
votes
1answer
11 views

Omniauth-facebook is hitting callback twice and failing

This problem has puzzled me for a few days, and I think I've finally narrowed it down. I'm using the Facebook JS SDK to do client side authentication: FB.login(function(response) { if ...
0
votes
0answers
9 views

Facebook Wont log users in Rails devise.

I am having trouble logging Users in using Facebook. I got it to work with Google,Twitter, and Yahoo! The problem is that it keeps redirecting the user back to my login page after they login with ...
0
votes
1answer
14 views

redirect omniauth-facebook to a specific page after authentication

Newbie here , i have omniauth-facebook setup in an application , every thing working fine , my only issue i want to redirect to another page after the authentication ,but i can't quite figure it out . ...
0
votes
0answers
36 views

Devise and Omniauth

I'm trying to integrate Devise with Omniauth and have some troubles with them both. The main problem is to bind Devise User model with Omniauth authentications. I want a simple way to associate my ...
0
votes
0answers
30 views

Facebook Authentication Error with Rails, Devise

I am using Omniauth gem to provide Facebook authentication in my app, but the url, with which Facebook redirects user is http://localhost:3000/users/login#_=_, this happens right after the user enters ...
0
votes
1answer
25 views

Google Calendar integration in a Rails App

My rails app will allow to create appointments. These appointments should then be exported to each users' google calendar. I have installed omniauth-google-oauth2, and got my api key, client_id and ...
0
votes
1answer
14 views

Rails 4 Devise/Omniauth Email exists in database error

I am "banging" my head against a wall trying to figure this out. I decided to allow users to log in through twitter, Google,my site or Facebook. The problem is that twitter does not provide emails, so ...
0
votes
1answer
32 views

ArgumentError in Devise::RegistrationsController#new wrong number of arguments (2 for 0..1)

Im following Ryan bates RailsCast on devise and omniauth (episode 235-devise-and-omniauth-revised). I keep getting the error in the title when i try to log in with twitter. def ...
0
votes
1answer
22 views

How to bypass Twitter omniauth “email can't be blank” error?

I am having a little trouble with Twitter authentication. I keep getting the email can't be blank, and redirect to sign up, but after inserting email and clicking sign up, I still get the same error. ...
0
votes
0answers
14 views

Using omniauth 0.3.2 with Twitter's API v1.1

Twitter recently retired v1 of their api https://dev.twitter.com/blog/api-v1-is-retired On an older project, I haven't got around to updating to a newer version of Omniauth. How can I use omniauth ...
0
votes
0answers
22 views

Rails 4 error with twitter/Facebook authentication. Devise

I am working with devise, and I am trying to allow users to signup using twitter/facebook. I am very confused because I keep getting \ No route matches {:controller=>"authentications", ...
0
votes
0answers
10 views

If I have a data model for a user created by Devise, How can I allow facebook login?

I am working on Rails 4 and I am trying to get facebook authentication working. I have a Users table in my database, but I am not sure as to how I would also allow login through facebook. The normal ...
0
votes
0answers
6 views

Redirect after log in through Facebook rails app

I am working with a Rails app with Facebook authenticaion. Only problem is that after going through the authentication part on facebook, the app redirects the User to the log in page of my app. I ...
1
vote
1answer
22 views

Facebook authentication URL error. Rails

I know this has been asked many times, but the solutions aren't working for me. I am using omniauth/devise with Facebook in my Rails app and I keep getting the stupid error message when directing to ...
0
votes
1answer
18 views

Signing in using FB connect fails in IE9

I'm working on a facebook app where the user has to sign in (using FB) to participate. This works fine on every browser except IE9, after the app tries to sign in, the user gets the error "this ...
0
votes
0answers
4 views

Omniauth Identity Send Email on Successful registration

I am using omniauth with the identity strategy for authentication in my project. I am wondering if there is a way when a user is successfully created to send out a welcome email? I have used ...
0
votes
0answers
32 views

How to hide a user's name and phone number in Rails?

Via my Rails App, user "A" can post something (doesn't matter what it is) in a listings type of app and then other users can search for these posts. Simple stuff. Now if another user let say user "B" ...
0
votes
0answers
12 views

Rails4 raise omniauth hash error

class SessionsController < ApplicationController def create raise env["omniauth.auth"].to_yaml end end I have error: RuntimeError in SessionsController#create --- ...
3
votes
0answers
24 views

Using two twitter applications with Oauth so I can have two separate callbacks

My rails application needs to use Twitter Oauth twice for two different purposes. The first is the typical user sign in. The second is for adding accounts so that tweets can be scheduled in advance. ...
0
votes
0answers
9 views

Missing client_id parameter

Stage: I want to authenticate users in a RubyOnRails application with Facebook credentials. I am using omniauth-facebook gem in Gemfile, but no devise: gem 'omniauth-facebook' Config 1: I have ...
0
votes
0answers
16 views

Devise + Omniauth Twitter and Facebook Strategies

A question about working with Devise and Omniauth using Facebook and Twitter strategies. My User model has both a :username and :email field How do you go about creating a nice "next step" message ...
0
votes
0answers
14 views

Get Password with Omniauth Signup

Currently I got a Rails app with devise + omniauth. Everything is working fine. A nice-to-have for me would be to get the encrypted password from the omniauth provider. Is this possible to do?
1
vote
2answers
24 views

Class name conflicts in module

I am implementing a client web application that connects to an API using Omniauth, following instruction here I have a class defined in a nested module in /lib/omniauth/strategies/testservice.rb ...
0
votes
0answers
37 views

Rails Linkedin Omniauth OAuth::ProbIem, broke with no code change

I'm relatively new to RoR and recently built a working linkedin autorization. My linkedin OmniAuth connection appears to have broke. It was working perfectly fine for about 12 hours. However, my code ...
0
votes
1answer
21 views

changing facebook app credentials breaking omniauth-facebook

I set local environment variables for facebook key / secret in a file to use with omniauth-facebook and everything works perfectly. Thought it might be a good idea to have 2 facebook apps, one for ...
1
vote
1answer
15 views

How to fetch fields that require access token using fbgraph

I am trying to fields that require access token, fields like age_range, here are the list of fields https://developers.facebook.com/docs/reference/api/user/ user = FbGraph::User.new('me', ...
0
votes
1answer
10 views

do I / should I test omniahuth-facebook

I'm implementing this for the first time and am curious whether I should test this? It looks like a pain to test. Any simple resources appreciated or thoughts. I am obviously testing our post callback ...
0
votes
1answer
32 views

Sign in to Devise using omniauth-facebook

Ryan Bates gives great screencast http://railscasts.com/episodes/360-facebook-authentication how to use "omniauth-facebook" gem. But there is some issues with: #application_controller.rb private def ...
0
votes
1answer
53 views

Omniauth-twitter in rails: OAuth::Unauthorized 401

I have been road blocked for 2 days on basic omniauth authentication with twitter. I followed along with Ryan Bates' railscast on simple omniauth, but have been unable to get past the ...
0
votes
1answer
50 views

Twitter Omniauth error with Ruby on Rails

Hello I being trying to solve this issue, I am trying to integrate twitter omniauth without using the devise gem and is giving me the following error. 401 Unauthorized My link in the sing in ...
0
votes
2answers
28 views

How does Devise and OmniAuth work together?

I have some questions on how Devise and OmniAuth work as I couldn't find any clarification on these one's I'm about to ask. Here I'll use Facebook as an example. If I wanted users to be able to ...
0
votes
1answer
14 views

Omniauth provider locale

I use Devise with Omniauth to let users log in through their Facebook and Google accounts. However I have one problem... If I want to change the name of the provider, ie. Google Oauth2 to Google. How ...
0
votes
1answer
15 views

Generating OAuth request token URL for OmniAuth

I'm using OmniAuth to make OAuth and OAuth2 request token calls. I can successfully get the OAuth2 tokens but I'm finding it very difficult to work with OAuth. Specifically generating the URL to the ...
0
votes
0answers
33 views

Facebook Phonegap associate with website login credentials

I have managed to get the Facebook Phonegap Plugin for iOS running and can login via my Facebook Account. Something that is still bugging me is, how can I associate the Facebook Account with my ...
0
votes
1answer
21 views

How to change /auth/:provider path by omniauth

To remove controller's name I wrote in routes.rb like this. get "/:user_id/:id", :to => "words#show", :as => :short_user_word It worked fine, but when I tried to use the path ...
0
votes
0answers
15 views

Faraday::Error::ConnectionFailed while press on Allow access

I have an issue with omniauth-google-oauth2 process. I am running Ubuntu 12.04 32 bit, ruby 1.9.2p290 (2011-07-09 revision 32553), rails: gem 'rails', '3.2.13' My Gemfile have the: gem ...
0
votes
0answers
13 views

Omniauth call back url for google invalid request

After following this link on how to setup omniauth using google in a rails app, I noticed that the call back url was different from what I supplied in the google api console. My question ...
0
votes
1answer
26 views

best omniauth gem for rails

I am using Omniauth-facebook gem from Github from Ruby on Rails. I have several questions regarding the omniauth-facebook gem. I am using the following function get the data from Facebook, but this ...
0
votes
0answers
39 views

FB dialog broken (unknown skip_api_login paramenter)

We're using FB login for a few years now, both from our Mac and Windows app. Since about a month ago the Windows app stopped connecting to FB, the request to FB just returns with ...
0
votes
1answer
32 views

How to insert a captcha in to my application's registration form using OmniAuth-identity for rails

I am trying to insert a captcha in to my application's registration form. I need place a controller helper method to check whether the captcha is valid. I'm using OmniAuth-identity for my simple ...
0
votes
0answers
24 views

Dropbox sending “Invalid OAuth Request” when making an API call

I'm learning to use OAuth instead of basic authentication on a rails app. I'm using Dropbox because I'm familiar with the product, not sure how it places on ease of use and documentation against ...
0
votes
0answers
22 views

rack set request.env omniauth.hash variable

How would I go about passing request.env['omniauth.auth'] to one of my routes? Is it an HTTP header, url parameter, or something else? I'm trying to authenticate with javascript, so in a sense my ...
0
votes
0answers
13 views

Using Omniauth open_id with a different port issue

I am having a project that requires to login with Yahoo open id. I am using Omniauth gem and "omniauth-openid" gem Everything is okay in my local machine but when I deploy it to the production ...
1
vote
1answer
59 views

ruby on rails login facebook get information

I use omniauth-facebook and get information about users with this function in user.rb def self.find_for_facebook_oauth(auth, signed_in_resource=nil) user = User.where(:provider => auth.provider, ...
0
votes
0answers
25 views

How to add a before filter for Facebook Omniauth Railscast?

I followed the Omniauth Facebook Railscast and everything works fine. Now I want to add a before filter, but can't manage to find an easy way to make it work? I tried, but get an error. I tried ...
0
votes
0answers
25 views

rails app window closes when fb logged in user tries to land on app

I have a rails app which uses omniauth for authorizing users via Facebook. When users(who are logged into facebook) are not logged in to my application, and are clicking a link to my app URL from ...
0
votes
1answer
36 views

Logout from facebook, when logout from rails APP

In my rails app, i have been using omni-auth 1.4.0 for the facebook integration. So after i done the expire access token issue, when i logout from my app, the facebook will automatically logout.
1
vote
2answers
45 views

A before_filter for Omniauth Facebook?

For devise there is a very easy to use Before_filter to use in the controllers. For some reason I can't get this to work for the Omniauth_facebook Gem. I followed the Railscast on Facebook Omniauth ...

1 2 3 4 5 24