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
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 ...
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 ...
0
votes
0answers
232 views
omniauth openid invalid credentials
I am using omniauth and logging into google and yahoo using the open_id strategy. This was working fine, until I enabled SSL on my site. There was a couple issues. First the URL's being generated were ...
0
votes
0answers
40 views
Accessing custom AX attribute/schema with Omniauth-openID
I have OpenID login with Omniauth-openid working well, however the provider I'm authenticating against has a few custom AX attributes that I need to access and I can't figure out where I tell Omniauth ...
1
vote
1answer
240 views
Google OpenID strategy is not working in Rails
I want to let users sign in to my Rails application using Google OpenID. So I have these gems
gem 'omniauth'
gem 'omniauth-openid'
gem 'devise'
config/initializers/omniauth.rb
require ...
1
vote
1answer
296 views
Omniauth, Devise, Open ID, CanCan - Whats what and When do I use which solution for a Rails API app
So Im developing a Rails app- primarily serves API which I want to lock down behjind a nice authorization system. Ive created Rails apps which render HTML and for that I used Devise and CanCan. This ...
0
votes
2answers
126 views
How to disable discovery and specify OpenID server for omniauth-openid
I am trying to do OmniAuth OpenID with Google Apps in Ruby on Rails. I know it should work out-of-the-box if I specify ":identifier => 'https://www.google.com/accounts/o8/site-xrds?hd=example.com'" ...
1
vote
0answers
60 views
Can't change App Name for Google authentication using Omniauth for Ruby on Rails
I've set up my my omniauth.rb file using
provider :google
but whenever I try to login, I still get "The site 934189150838.apps.googleusercontent.com is requesting access to your Google Account for ...
0
votes
0answers
70 views
how to update user password?Devise + OpenID
env:Rails + Devise + OmniAuth
while i login with Google OpenID,the site create a user automatically,and a random password.
but when i try to update user's password,that tells me:u need current ...
0
votes
1answer
252 views
Devise Omniauth with google open-id access token information
I'm new in rails and I'm trying to integrate omniauth and the login with google.
Surfing on the web i found a way to do it, but i got this error:
undefined method `[]' for nil:NilClass
...
0
votes
2answers
632 views
Is there an omniauth strategy for Google login using openid?
I know there's a google-apps strategy which uses openid. And I know it's possible to configure Omniauth's generic openid strategy to work with regular (non-apps) google accounts.
I also know there's ...
6
votes
2answers
594 views
Omniauth and open_id with Google broken when running behind nginx in SSL mode
Rails 3.0.12, newest omniauth, I can connect to Google and get the user's email address just fine. But then I run that same rails app behind nginx in SSL mode, and it fails with the Google page:
"The ...
4
votes
1answer
206 views
How to make OpenID login using omniauth-openid gem secure?
I am using the 'omniauth-openid' gem to implement OpenID login. In my OmniAuth callback method I do something like this (it's simplified but conveys the important details):
def google
oauth = ...
1
vote
1answer
177 views
Why does omniauth require a store for the OpenID provider?
OmniAuth is using a store (see here) for the OpenID provider (e.g. OpenID::Store::Filesystem) and while setting it up and using it simple, I don't know why is it needed at all.
Does anybody know ...
1
vote
1answer
365 views
Omniauth Google Account UID?
I'm using the omniauth gem so people can log in to my site with their google accounts. I have it working with facebook and twitter but I for google accounts I can't extract the UID properly on the ...
1
vote
0answers
303 views
Server aborts on trying to login using Openid using Omniauth, Rails 3
I am using omniauth for my Rails 3 / Ruby 1.9 app and it is working well for Twitter and Facebook. However, I am trying to add Google OpenId and I am facing an issue.
I have the following code in ...
0
votes
1answer
97 views
Google differentiates between www.domain.com and domain.com with Omniauth/OpenID
I have Facebook, Aol, Yahoo and My OpenID working correctly with Omniauth using either www.my-domain.com and my-domain.com for the same account.
Sadly, Google treats these separately and if after ...
3
votes
2answers
732 views
OmniAuth on Heroku with custom domain results in Application Error
I have an application on Heroku which uses omniauth and authenticates correctly when I visit myapplication.heroku.com/auth/open_id, input my google endpoint, and get redirected back.
However, when I ...
2
votes
1answer
656 views
Devise and OmniAuth: How to save facebook data for later use?
I have successfully implemented login with Facebook using Devise and OmniAuth (built into Devise). Now I need to figure out how to store the user's name in the database so that I can display their ...
2
votes
2answers
564 views
Why is heroku timing out when I try to use Omniauth + Google Apps?
I'm trying to use Omniauth to provide simple, basic authentication against Google Apps. Everything works fine locally (even in production mode), but on Heroku I get the following:
app[web.1]: ...
0
votes
1answer
326 views
Omniauth OpenId authentication returns nil on user_info
I am using Ruby 1.9.2 + Rails 3 + Devise + Omniauth and trying to authenticate users with Openid.
My providers on omniauth.rb are
provider :open_id, OpenID::Store::Filesystem.new('/tmp')
provider ...
2
votes
2answers
294 views
How to move OpenID store to database instead of /tmp
We have a rails application that uses devise, and omniauth and wanted to support openID. We have it working on a single server, but it uses "/tmp" for it's "filesystem store". It seems like this wont ...
1
vote
1answer
666 views
OpenID error when running rails server
I finished the tutorial at http://www.communityguides.eu/articles/16 and tried to launch the rails server. A few seconds after running rails server, I get an error and I'm pulling my hair out trying ...
1
vote
1answer
46 views
Is Google open id (and other open id in general) subjected to change for the same user?
I recently encountered a situation where the same Google user visit my website twice but end up recognized as two different users. Although the email is the same, the openid is different.
Wonder if it ...
0
votes
1answer
657 views
Ruby and rails with Omniauth - google and openid error
I'm using omniauth 0.1.5 with rails 2.3.8 and have managed to implement both Twitter and Facebook authentication. Openid, however, is giving me some issues, namely the following:
WARNING: making ...
3
votes
4answers
1k views
What's the correct configuration line to get devise, omniauth and google working?
I've looked through the documentation and I can't figure out the specific line I'm meant to use to get devise + omniauth + google working together nicely.
This strategy file suggests there's an easy ...
5
votes
1answer
596 views
How do I NOT require user's email when using Rails Omniauth gem and Google OpenID
My current /config/initializers/omniauth.rb file contains:
Rails.application.config.middleware.use OmniAuth::Builder do
provider :open_id, nil, :name => 'google', :identifier => ...
1
vote
0answers
623 views
Devise/omniAuth with openid and confirmation email - credentials failing
I have implemented devise with OmniAuth. I am trying to follow below scenario and observed issues.
Created project using git clone option from
...
0
votes
4answers
711 views
OpenID for rails app behind Apache
I'm trying to integrate simple OpenID authentication through Google accounts. I'm using omniauth gem and on my local development system (Win7, ruby 1.8.7-p302, rails 2.3.8, omniauth 0.1.5) everything ...
5
votes
5answers
1k views
OmniAuth & openid: getting certain fields from openid provider
I'm using the rails gem: OmniAuth to login users.
When using an OpenId provider I would like to get certain field, like email and nickname but I don't see any documentation on this.
Any ideas?
...