Tagged Questions
0
votes
0answers
8 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 ...
0
votes
0answers
13 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
19 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
11 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 ...
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 ...
1
vote
1answer
35 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
0answers
165 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 ...
0
votes
0answers
43 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
1answer
23 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 ...
0
votes
1answer
112 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
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
42 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
26 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
...
0
votes
2answers
46 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:
...
1
vote
0answers
92 views
ArgumentError in AuthenticationsController - wrong number of arguments (3 for 1)
I'm trying to get users to successfully log in using a provider but I'm getting this error. The user is getting created successfully but this error message prevents the user from getting to the signed ...
0
votes
0answers
37 views
how to I override this validation for OmniAuth?
I'm following the OmniAuth railscasts but I'm facing this issue.
The error message that I get when I try to login through Twitter is
Validation failed: Password digest can't be blank, Name can't be ...
0
votes
1answer
79 views
Can't mass-assign protected attributes: provider, uid (omniauth railscast)
I'm following the railscast for omniauth pretty closely but I'm getting this error that is not experienced in the video
Can't mass-assign protected attributes: provider, uid
Here's the ...
0
votes
0answers
31 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 ...
0
votes
1answer
34 views
omniauth google_oauth2 the profile image is not present in the authhash
This is written in omniauth.rb an initializer.
Rails.application.config.middleware.use OmniAuth::Builder do
provider :google_oauth2,ID,SECRET,
{
:approval_prompt => '',
:scope => ...
0
votes
1answer
46 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
0answers
21 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
0answers
360 views
Facebook Login within a modal using Omniauth, Ajax and Rails
Currently I am working on enabling sign in's via social networks(in this case facebook) from within a modal and using omniauth. Because there are certain dom changes that need to happen on success, I ...
0
votes
1answer
136 views
How can I get oauth token and oauth token secret using the ruby omniauth-twitter gem?
I setup my app similar to the tutorial here - http://railscasts.com/episodes/235-devise-and-omniauth-revised. If you cant access it, below is my code
Omniauth controller callback
def all
user ...
0
votes
1answer
52 views
Authentication w/ Omniauth (No Devise) - How to Check is Signed In in Routes?
I'm using only omniauth-oauth2 for authentication (No Devise). I would like to define different roots for users who are signed in and are not, to include a secure dashboard. I have a current_user ...
1
vote
1answer
64 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'], ...
0
votes
1answer
182 views
Rails Omniauth-github (422) The change you wanted was rejected
I have had this solution for Omniauth & Github implemented and working fine but sometime in the last few months it stopped working.
The error I'm getting when I try to login is: (422) The change ...
0
votes
0answers
62 views
omniauth-facebook issues “Invalid_Credentials”
I have a very strange problem, but only at production server.
I was using this Gem in my Gemfile.
gem "omniauth-facebook", "~> 1.4.1"
But suddenly started getting the following error on ...
0
votes
0answers
36 views
Remove Redundant fields in two associated Mongoid Models
In my omniauth & omniauth-identity based app I came across the follwoing issue:
There are three tables that manage Userdata:
# Stores User data _not_ authentication data
class User
include ...
0
votes
1answer
73 views
How to add user authentication and ask for more FB user permissions in a facebook page tab app?
I am designing some FB Page Tab apps which will needs the FB user information. I want to ask for user permission as soon as the user hits the Tab of the application installed on the page. Then, if I ...
0
votes
1answer
54 views
How do I setup omniauth-facebook on an already existing omniauth and devise rails app?
So, I followed the instructions as mentioned here http://railscasts.com/episodes/235-devise-and-omniauth-revised and successfully setup the the sign in and sign up with twitter option. Now I am trying ...
0
votes
1answer
112 views
Facebook Omniauth routing error in Ruby on Rails
I followed Rails Casts Episode #360 on how to integrate facebook login.
When I click 'Sign in with Facebook', I get this error:
Routing Error
No route matches [GET] "/auth/facebook"
Here is my ...
0
votes
0answers
53 views
CBS Sports API, Ruby
I am struggling figuring out how to work with the cbs api. Would someone be able to tell me what a request using ruby would look like based on the below specs? I have been trying this format but no ...
0
votes
0answers
55 views
Rails sign in facebook
I use omniauth-facebook gem. Generally I'm completely following railscast episode #360 (http://railscasts.com/episodes/360-facebook-authentication?autoplay=true)
So I did all like in tutorial.
After ...
0
votes
1answer
39 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:
...
1
vote
1answer
78 views
Omniauth redirect
So I've got Omniauth with Twitter validation functioning at about 95%, in other-words it's almost fully functional. When clicking the | Sign-In with Twitter | button on my app, it re-directs me to ...
0
votes
1answer
55 views
DangerousAttributeError in OmniAuth create is defined by ActiveRecord
Please see this page, as I have the same problem: DangerousAttributeError in OmniAuth Railscast Tutorial: create is defined by ActiveRecord
However being fairly new to rails, I am not quite sure as ...
1
vote
2answers
87 views
Omniauth not working
So I've installed the Omniauth gem, and it's currently implemented with Devise.
Devise is functioning great however getting Omniauth setup has been a battle and it's something i'm still trying to ...
0
votes
0answers
44 views
NoMethodError in AuthenticationsController#create
Can't seem to find an answer for this, i've checked all over stack overflow and it seems like an unsolved mystery. Who ever can solve this is brilliant!
Not sure which controllers or contents to ...
1
vote
1answer
179 views
ArgumentError Received wrong number of arguments [closed]
This is pretty scary, but I've spent about a week developing an app and have just been hit with the following error when running the 'Rails S' command. My app doesn't seem to want to start up anymore.
...
2
votes
2answers
334 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, ...
1
vote
1answer
138 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 ...
0
votes
1answer
46 views
Share session between 2.3 and 3.2 app
I have an app written in rails 2.3. This app uses devise for authentication. I'm on the need to create a SSO with some other projects, like Worpdress.
Because newer versions of devise includes ...
1
vote
1answer
27 views
Routing Test Fails with Matched Route
I have this line of code in my routes
namespace :api, defaults: {format: 'json'} do
namespace :v1 do
match '/auth/:provider/callback', to: 'sign_in#authenticate'
end
end
And my test as
...
0
votes
0answers
33 views
Usual method of applying remember me and OmniAuth?
So, I have a remember me check box in the signin form (session create action):
sessions_controller.rb:
def create
user = User.find_by_email(params[:session][:email].downcase)
if user && ...
1
vote
2answers
54 views
Authentication from scratch - How safe are the cookies from being tampered with?
Am attempting to do authentication from scratch, using Omniauth.
I followed Ryan Bate's screencast. But before I roll out an implementation, I'd like to understand a few things.
In his screencast, ...
1
vote
2answers
89 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 ...
0
votes
1answer
102 views
Bundle install error with “omniauth-oauth2”
Running bundle install I get the following error (full trace: http://pastebin.com/Vp4nHc2p):
Bundler could not find compatible versions for gem "omniauth-oauth2":
In Gemfile:
omniauth-facebook ...
0
votes
0answers
49 views
login to app with facebook token only using rails and omniauth
Is there any way I can create/log in user with omniauth gem if I know only his facebook token?
I have token saved in database for users wich already logged in before from my app, but the token goes ...
1
vote
1answer
172 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 ...


