0
votes
0answers
12 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 ...
1
vote
0answers
16 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
0answers
12 views

Before_filter for Omniauth facebook?

Like The Devise Gem => before_filter :authenticate_user! how can I do the same for Omniauth_facebook gem? I tried: before_filter :authenticate def authenticate redirect_to :login unless ...
0
votes
1answer
17 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
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 ...
0
votes
0answers
33 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
27 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 ...
1
vote
0answers
29 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
44 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
35 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
41 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
20 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
19 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
33 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
29 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
42 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
24 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
20 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
30 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
38 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
45 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 ...
0
votes
0answers
21 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
votes
0answers
23 views

how to send linkedin connection request using linkedin gem

I am using linkedin in my application for authentication using Omniauth-linkedin. I able to login with linkedin credentials. According to my requirement I have to send linkedin connection request to ...
1
vote
1answer
82 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
52 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
34 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
41 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
29 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
41 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
18 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
2answers
34 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
1answer
22 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
80 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
2answers
56 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
0answers
45 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
27 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
49 views

Resizing remoted image(carrierwave)

I use carrierwave and omniauth(and omniauth-facebook) gems in my app. I think it makes no sense to describe how I use these gems. I get image from request.env["omniauth.auth] and save it to ...
1
vote
0answers
32 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
2answers
46 views

Omniauth-facebook: retrieve user location

I have the following configuration in my config/initializers/omniauth.rb provider :facebook, id, secret, {scope: 'email, user_location, user_birthday', image_size: {width: 400, height: 400}} But ...
0
votes
1answer
21 views

how to update a table attribute each time a user logs back in? (rails 3 + omniauth)

I have a column in my User table called "image" This image stores the URL of the avatar that is pulled from a user's twitter account. Part of User table create_table "users", :force => true do ...
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
2answers
41 views

undefined method `[]' for nil:NilClass when trying to pull twitter avatar

I'm trying to pull in user's profile avatars from twitter using these codes Any idea how I need to fix this error message? Here's what I'm using in the Users Helper module UsersHelper def ...
0
votes
2answers
63 views

ActiveRecord::RecordNotFound in Controller#destroy

I'm trying to get the controller's "destroy" to work correctly and I'm wondering what the correct set up should be. The error that I'm getting is ActiveRecord::RecordNotFound in ...
0
votes
1answer
127 views

Why is the twitter oauth access token invalid / expired (rails 3) [duplicate]

I've been trying to solve this problem for the past three days but to no avail. All I'm looking to do is allow users who logged in using Twitter to tweet to their accounts. Here's the error message ...
1
vote
2answers
76 views

Twitter::Error::Unauthorized in PostsController#create - Invalid or expired token

Why does "create" throw me an invalid/expired token error? The users are able to log in just fine (so they are authenticated properly) but when they try to create a post, I get this error. I'm using ...
1
vote
1answer
55 views

Initializing OmniAuth with unicorn

I have a rails 3 app which uses OminAuth. I'm initializing It with the file "config/initializers/omniauth.rb": Rails.application.config.middleware.use OmniAuth::Builder do provider :facebook, ...
0
votes
0answers
35 views

Why does the token expire when trying to use it with the Twitter gem in rails?

I'm using omniauth + twitter gem. Here's the error that I'm getting on my site Twitter::Error::Unauthorized in PostsController#create Invalid or expired token In order to fix this, I am trying to ...
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
95 views

NoMethodError - undefined method `user' for nil:NilClass

I'm using Omniauth to try to signup/login users on my web app. This is happening inside my AuthenticationsController#Create method: Authentications Controller: class AuthenticationsController < ...
0
votes
1answer
42 views

How dows Ketchup (gottaketchup.com) send facebook messages?

I've been searching all day and everything I can find indicates that it is impossible to send a message to a user's facebook friends via the Graph API. I understand that I can send a link as a ...

1 2 3 4 5 17