OmniAuth is a flexible authentication system for Ruby applications utilizing Rack middleware, such as Rails applications.
1
vote
1answer
11 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
5 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 ...
2
votes
2answers
128 views
Sign in with Devise, Omniauth and SoundCloud
I'm trying to sign in my Rails application using Devise and Omniauth. I've already installed omniauth-soundcloud and omniauth gems. I've created an application in Soundcloud with:
name: sitename
url: ...
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 ...
10
votes
3answers
4k views
Setting Environment Variables in Rails 3 (Devise + Omniauth)
I've been trying to figure out how Ryan Bates, in his Facebook Authentication screencast, is setting the following "FACEBOOK_APP_ID" and "FACEBOOK_SECRET" environment variables.
provider :facebook, ...
0
votes
1answer
20 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
0answers
13 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
14 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
21 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 => ...
1
vote
2answers
292 views
Devise, OmniAuth & Facebook: “Not found. Authentication passthru.”
Trying to follow along with https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview and I'm stumped.
I've got config.omniauth :facebook, ENV['FB_APP_ID'], ENV['FB_APP_SECRET'] in my ...
2
votes
1answer
47 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
0answers
15 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
19 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
44 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 ...
0
votes
2answers
61 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 ...
-1
votes
0answers
25 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 ...
0
votes
1answer
30 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 => ...
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
37 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", ...
6
votes
3answers
4k views
Access token from devise+omniauth-facebook authentication for using in fb-graph
I used devise and omniauth-facebook in my Rails 3 app for Facebook authentication, based on this tutorial: Adding Facebook auth to Rails 3.1 app, and it's working great!
But now I want to have full ...
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 ...
1
vote
0answers
36 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 ...
0
votes
1answer
104 views
Devise Omniauth callback error
I have a web application running Devise and Omniauth to authenticate a user on Facebook. When I click on a link to log in though Facebook, it routes me to
...
3
votes
2answers
46 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
2answers
79 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 ...
0
votes
0answers
21 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
20 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
35 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
...
1
vote
1answer
43 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
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 ...
0
votes
0answers
26 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
23 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, ...
1
vote
1answer
73 views
Facebook APP Multiple Domains
I am setting up a Ruby on Rails app to allow login via Facebook with Devise + Omniauth. I can got this working no problem with the APP ID and Token.
However I am having an issue that I am not sure ...
5
votes
3answers
1k views
OmniAuth Strategies Facebook NoAuthorizationCodeError (must pass either a `code` parameter or a signed request (via `signed_request` parameter):
I am getting a error:
OmniAuth::Strategies::Facebook::NoAuthorizationCodeError (must pass either a
`code` parameter or a signed request (via `signed_request` parameter or a
`fbsr_XXX` cookie)):
...
0
votes
0answers
33 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
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
2answers
40 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 ...
8
votes
2answers
283 views
Rails omniauth-facebook unsolved issue
The current omniauth-facebook seems to have some issues, and I want to know if anyone has answers to them.
First issue was the invalid credentials problem. I couldn't log in to my application using ...
1
vote
1answer
141 views
setting up omniauth-browserid (Mozilla Persona) in Rails
using Rails 3.2.9
added to Gemfile:
gem 'omniauth-broswerid'
ran:
bundle
browse to my app, click Login with Browserid button. Get the following error:
No route matches [GET] ...
1
vote
1answer
89 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 ...
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
vote
1answer
32 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/}
...
5
votes
4answers
2k views
can't authenticate with Facebook
I'm following Ryan Bate's instructions for using Omniauth to set up third party authentication, except that I'm trying it with Facebook rather than Twitter, which he sets up in RailsCast 235.
After ...
4
votes
1answer
86 views
How do I pass “Log In via Twitter” credentials from a Rails back end to an iPhone app?
I'm making the back end for an iOS app in Rails. Users need to be able to log into the app using an app-specific username/password or via Twitter, but I'm not quite sure how to set things up for ...
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
0answers
35 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 ...
1
vote
0answers
148 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 ...
17
votes
5answers
7k views
Omniauth Facebook Error - Faraday::Error::ConnectionFailed
(FYI: I'm following the Twitter Omniauth from railscast #241. I used Twitter successfully, now going onto Facebook)
As soon as I logged into Facebook using Omniauth, I get this error:
...
0
votes
0answers
12 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
64 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,
...




