Tagged Questions
0
votes
1answer
25 views
How do I configure omniauth use memcached as a backing store with google in classic sinatra app?
I am attempting to debug an issue where doing oauth with Google when there are multiple app servers behind an EC2 ELB is failing. I believe the issue is related to the fact that the oauth backing ...
0
votes
1answer
23 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
0answers
92 views
Omniauth-twitter returns 401
Stage:
I have a Rails app, it should authenticate users using their twitter account, so I use Omniauth-Twitter gem.
I have configured one app in dev.twitter.com enabling Sign in with twitter flag ...
0
votes
2answers
112 views
What to do with access token(from the Auth Hash) in Omniauth?
I'm using Devise and Omniauth, and following the railscast(http://railscasts.com/episodes/235-devise-and-omniauth-revised) about it. It have only dealt with :uid, :provider. Nothing involves the ...
0
votes
1answer
92 views
Ominauth-evernote, OAuth::Unauthorized 401 Unauthorized
Am using omniauth-evernote gem
omniauth.rb
provider :evernote, EVERNOTE_CONSUMER_KEY, EVERNOTE_CONSUMER_SECRET ,:client_options => { :site => 'https://www.evernote.com' }
Am not able to ...
0
votes
0answers
62 views
Doorkeeper - Hitting Authorize Results in Error auth = nil
When hitting the "Authorize" button, I get "Called id for nil"
Here is the line where the problem is occurring in my authorizations controller:
46 auth = authorization.authorize
Auth ...
0
votes
1answer
43 views
How to handle user revoking LinkedIn access in rails
How should I handle a user revoking my access to their LinkedIn account? I am using Ruby on Rails with Omniauth, Omniauth-LinkedIn and linkedin gem (latter incorporates oauth gem).
My controller code
...
0
votes
1answer
89 views
Force Omniauth/OAuth to ignore browser cache and reauthenticate?
So I've run into the following unintended behavior when setting up OAuth with Omniauth in my Rails app.
When a user has previously authenticated to a OAuth provider (Facebook for example), the ...
0
votes
0answers
68 views
Omniauth Twitter - No redirect after login
Rails 3.2.11
Omniauth 1.1.3
Omniauth-facebook works but Omniauth-twitter not with the same code.
Setup is minimal like in https://github.com/railscasts/241-simple-omniauth cast.
After ...
3
votes
2answers
103 views
Multiple, Simultaneous Oauth in a Rails Application?
My end goal is for users to have multiple 3rd party authentications at the same time.
Right now, I am using Devise to create users. Users can sign up via email or facebook or google and it works. ...
2
votes
0answers
135 views
Linked In authentication and aggregate data
I'm building a web app with Ruby on Rails and I want my users to authenticate and aggregate data from Linked In (and others like Github, Twitter, etc...).
I am using these gems:
Devise for ...
4
votes
1answer
311 views
Magento oauth and REST api trouble
I’m trying to integrate my ruby on rails app to magento, and I got so far as to make the initial request, get authorized, and I believe I’m getting the final token, but I can’t be sure. Here is what I ...
0
votes
1answer
83 views
Is it possible to use facebook oauth to secure my json API?
I'm developing a mobile app that will interact with a rails app that's essentialy a json api. Is it possible to use an external identity provider such as facebook or googleplus to secure the access to ...
1
vote
0answers
70 views
OmniAuth/OAuth Authentication from a ruby script
Is there a way I can test out the OmniAuth authentication from a standalone ruby script?
Every resource I could find on web lists its usage only in Rails project.This link too: ...
0
votes
1answer
273 views
Specify token options for OmniAuth OAuth2 based strategy
I'm creating custom strategy for Nimble.com API. As they're using OAuth, it's pretty simple.
require 'omniauth-oauth2'
module OmniAuth
module Strategies
class Nimble < ...
2
votes
0answers
266 views
sinatra, omniauth, launchpad.net strategy unable to get request token
I'm attempting to pull a request token via https://launchpad.net using sinatra, and a custom omniauth strategy
require 'omniauth-oauth' ...
2
votes
0answers
279 views
omniauth and linkedin => 401: OAuthProblemException while parsing OAuth request
I'm using the omniauth and omniauth-linkedin gems for
general OAuth functionality, but I'm not able to make them play
nice with the linkedin gem, even when calling authorize_from_access
as per this ...
1
vote
0answers
181 views
OmniAuth with Twitter Strategy intermittent “invalid_credentials” failure for some users
I've implemented OmniAuth + Twitter strategy. It works most of the time for most users. But some users have been getting a consistent failure, and I have not been able to reproduce it or track it ...
0
votes
1answer
162 views
Omniauth making multiple auth calls per request?
I have Omniauth set up with a WePay strategy ( https://github.com/intridea/omniauth ). When getting authorization, it is making the v2/oauth2/token call four times (interspersed with /v2/user calls), ...
0
votes
0answers
55 views
Rails CMS with support OmniAuth authentication for site
I need yours advice people. I have main system with OAuth 2.0 provider support. For support sites I want to use simle CMS, but only requirement is support Postgresql and Devise+OmniAuth (or OmniAuth ...
0
votes
2answers
993 views
How to test Facebook-Connect on local host using ssl
I have a rails app that uses facebook connect to enable user registration/login (using devise and omniauth). After reading several articles on Firesheep i decided to force ssl communications for my ...
0
votes
2answers
272 views
OmniAuth dynamic client options site within the strategy
I have a rails app set up as an OAuth2 provider (using Doorkeeper). The app uses a different subdomain per user account (or an entirely different domain through a cname record)
i.e.
...
1
vote
0answers
230 views
Rails 3.2 OmniAuth with Rdio Error - 403 OAuth Not Authorized
I'm trying to use OmniAuth to authenticate with Rdio - my app already successfully authenticates with Twitter using an Omniauth strategy
Tried using the omniauth-rdio gem and it seems to be failing: ...
6
votes
1answer
106 views
How to benchmark logins per second with omniauth / oauth ? (ruby+rspec)
I want to benchmark how many logins per seconds are possible with an (own) omniauth provider. I need to find out how the performance of this omniauth/oauth requests are, and if this authentication is ...
0
votes
1answer
102 views
How to setup a login with google in rails applicaiton?
I use omniauth for login to socialnetworks. I am able to create an app in facebook and
I can put my id and secret in the configuration file. But I am not able to do the same thing in google because I ...
2
votes
1answer
310 views
Requesting Google Contacts in Ruby using Omniauth
I have successfully authenticated against Google using Omniauth, and now have session token and secret in my Authentication record, with :scope => "https://www.google.com/m8/feeds/".
I can't figure ...
0
votes
1answer
102 views
Devise, omniauth, ao-oauth automatic random login when switch to ruby 1.9.3
GEM ENV :
gem 'rails', '3.0.11'
gem 'omniauth', '0.3.2'
gem 'oa-oauth', '0.3.2'
gem 'devise', '1.4.7'
Problem :
Under ruby 1.8.7 everything works well.
When launched under ruby 1.9.3(patch 125) a ...
2
votes
2answers
1k views
How to use and configure omniauth with yahoo, google, facebook strategies in various environments?
I'm working on a Rails 3.2 application that will allow users to authenticate with multiple providers ... Yahoo, Google, Facebook and/or Twitter. We are using omniauth, and while I understand the ...
1
vote
2answers
152 views
How do I authenticate a user if they are not using my web (rails) application, e.g. using an API
I have created a Rails (3.2) application that uses the OmniAuth gem to provide OAuth authentication. Users can log into the site using their Twitter, Facebook or Google credentials, pretty ...
0
votes
1answer
622 views
How do OAuth access tokens work for API requests?
I've created a custom OAuth provider using oauth-plugin. I'd like to create a provider API that gives access to user data, but I'm not sure how to properly construct the API query.
I've noticed that ...
0
votes
1answer
374 views
can omniauth-google-oauth2 be used also to get calendar info back from the google calendar API?
Can omniauth-google-oauth2 be used also to get calendar info back from
the google calendar API?
I have managed to so far to get:
a) omniauth-google-oauth2 test rails app working to "sign on with
...
0
votes
1answer
393 views
Rails3 and Omniauth-google
I've just got into using Omniauth for logging in with Twitter and Facebook and that's all working great. Then I started to work with Omniauth-google and couldn't find out where I signup to get my ...
2
votes
1answer
689 views
Devise omniauth-github oauth2 error “bad_verification_code”
I have a rails 3.1 app with devise 1.5.3, omniauth 1.0.1, and omniauth-github 1.0.1 as well.
config/initializers/devise.rb
config.omniauth :github, ENV['GITHUB_KEY'], ENV['GITHUB_SECRET']
...
0
votes
1answer
541 views
dependency between oauth and sorcery
How to solve this dependency problem.
I`m using sorcery to administration and I dont need oauth2(0.4.1).
Bundler could not find compatible versions for gem "oauth2":
In Gemfile:
...
1
vote
1answer
406 views
Implementing multi provider authentication in rails
I am working in a project that provides authentication with multiple providers such as Facebook, Twitter, Google, Foursquare. Which gem is suitable for all these providers? I think i can use Omniauth. ...
0
votes
2answers
1k views
OmniAuth with Facebook failing in development
does anybody have experience with OmniAuth & Facbeook? I just moved from using a hardcoded app id & secret key in my application, to the ENV['FACEBOOK_APP_ID'] method. I know that these values ...
5
votes
3answers
5k views
omniauth OAuthException & OAuth::Unauthorized
I have installed omniauth 1.0. Also I have oauth-0.4.5, oauth2-0.5.1, omniauth-facebook-1.0.0, omniauth-twitter-0.0.6.
omniauth.rb
Rails.application.config.middleware.use OmniAuth::Builder do
...
0
votes
2answers
553 views
Google API Oauth/Omniauth not verifying my application name or type
I'm using Omniauth to connect to the Google API for Oauth authentication. I am passing xoauth_displayname with my application name and I'm getting the following error on the screen that allows access ...
2
votes
2answers
801 views
Facebook asking for extended permissions (but should not)
I'm developing an app that enables the users to create an account and log in. So I'm using omniauth and everything works like a charm. The only thing that bugs me is Facebook's authorization (and sign ...
0
votes
2answers
199 views
omniauth gowalla strategy error: comparison of String with Bignum failed
as far as I can get gowalla auth code response contains both expires_at and expires_in but
expires_at is not valid date string so it throws error while comparing dates
any idea to hack omniauth or ...
0
votes
1answer
760 views
Can't access environment variable from Rails 3.1 initializer
I have an initializer file that looks like this:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :facebook, '000000000000000', 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
end
...
0
votes
2answers
886 views
Using YouTube login with Omniauth, Ruby on Rails 3
I am creating an application that uses OmniAuth exclusively for logins, that is, users can log in using their various accounts from around the Internet. My site involves videosharing, so I would love ...
5
votes
2answers
614 views
Is it possible to get Gmail oauth or xauth tokens with OmniAuth?
I want to get oauth or xauth tokens from GMail to use with gmail-oauth. I'm thinking of using OmniAuth but it seems not to support GMail yet, which means that with stock OmniAuth is impossible. Is ...
2
votes
3answers
653 views
Mendeley Custom OAuth Strategy
Mendeley has a great API (in fact they have put up a contest using their API, this question is not specific to that though), that uses OAuth.
I am trying to write a strategy to allow Mendeley ...
1
vote
1answer
372 views
How to the same thing with omniauth
Reading on this oauth tutorial.
I would like to do exactly the same thing using the Omniauth gem, to get the access tokens from Twitter's API.
#oauth = ...
5
votes
5answers
3k views
Google oauth via devise and omniauth/oauth continually requesting access
I can use devise with omniauth (oauth NOT openid) and a devise.rb config like this:
config.omniauth :google, KEY, SECRET
and it correctly does the redirection to google to ask permission (and ...
0
votes
1answer
333 views
Omniauth Tumblr setup: Where can i find the setup credentials?
I am using omniauth to register multiple user accounts from facebook, twitter and tumblr. I succesfully set up the connections to facebook and twitter, but i fail to connect to Tumblr.
The omniauth ...
0
votes
1answer
587 views
what does this mean for linkedin gem? undefined method `downcase' for nil:NilClass
I get the following error now (didn't really change code, but started happening):
undefined method `downcase' for nil:NilClass
I have this in my controller after authenticating with OmniAuth (and ...
2
votes
2answers
750 views
How can I pass parameters through an OAuth authentication so that my callback or controller can use?
I am using OAuth to a provider (LinkedIn).
I want to be able to pass parameters so that when someone signs-up, I can add some additional values at the time the new User is created (I am using ...
7
votes
2answers
1k views
omniauth oauth tokens for gmail are invalid
I'm trying to get an oauth token I can use with gmail_xauth (ruby gem)
to look at a user's mail. I first registered my app with google and
then set up devise to request access to mail:
...