Tagged Questions
1
vote
1answer
31 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
9 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
1answer
18 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.
0
votes
1answer
14 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 ...
0
votes
0answers
6 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
12 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
0answers
14 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
31 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
23 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
23 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
58 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
28 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
57 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
58 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
39 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
52 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
23 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
25 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
43 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
45 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
28 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
28 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
37 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
41 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
50 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
23 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
27 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
109 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
65 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
43 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
45 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
38 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
50 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
19 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
37 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
24 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
89 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
63 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
48 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
52 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
37 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
53 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
22 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
43 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
66 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
136 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
81 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 ...



