Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
4answers
918 views

Rails, OpenID and Authlogic

I've been following ryan baytes screencast #170 and adding ruby-openid, authlogic and authlogic-oid to an existing authlogic authentication system. However, i keep getting the following stack of ...
3
votes
2answers
340 views

authlogic openid auto_register feature tries to duplicate registration

I am trying to enable openid authentication on my website as well as use auto_register feature of latest authlogic_openid add-on. Everything works fine until second login. The first time user is ...
2
votes
2answers
128 views

Authlogic and OpenID registration and login in one action

I was playing with Rayan Bates http://railscasts.com/episodes/170-openid-with-authlogic sources as the basis. So I created few icons for OpenID providers, like Google, Yandex, OpenID, and user have ...
2
votes
1answer
56 views

Access recovery mechanism if site only supports OpenID login

Say I have a site, like StackOverflow, which supports OpenID login only. Suppose someone had an account on the site, bound to his OpenID, and then he lost access to his OpenID provider (that's surely ...
2
votes
2answers
730 views

using authlogic to auto create users bypassing explicit user registeration

I'm wondering how to go about using Authlogic to auto register a user who chooses to use open id. Right now they have to register first before being able to login in, even if they choose open id, but ...
1
vote
1answer
103 views

How can I use OpenID for users logged into multiple Google accounts simultaneously?

Google now allows people to be signed into multiple Google accounts at the same time. However, I don't think that Google accounts have their own unique OpenID identifier URLs (it's the same for ...
1
vote
1answer
46 views

force user to register

Is it possible to require a "logged in" user to complete registration before he can continue on? This scenario happens when a user logges in via facebook or some other oauth/open id provider and the ...
1
vote
2answers
446 views

Authlogic, logout, credential capture and security

Ok this is something weird. I got authlogic-oid installed in my rails app today. Everything works perfectly fine but for one small nuisance. This is what i did: I first register with my google ...
1
vote
1answer
100 views

OpenID register on login (authlogic_openid)

What is the proper way to register users automatically when they log in with openid? I am using authlogic with an authlogic-oid gem (and an older version of openid_authentication). The stuff I read ...
0
votes
0answers
26 views

Setting callback url in AuthLogic_Connect

I need to pass parameters to the Oauth provider so when it returns from the redirect I'll be able to keep state. Does anybody know how to do this in AuthLogic_Connect?
0
votes
1answer
45 views

Using OpenID with Authlogic

Are there any updated tutorials for using OpenID with Authlogic? I'd heard good things about Authlogic, and the documentation makes it seem much better than Restful Authentication... but in trying to ...
0
votes
1answer
140 views

Can authlogic-oid be configured to use a tablename other than session?

I'm working on a rails3 login using Authlogic and Authlogic-oid, with activerecord-oracle_enhanced-adapter, and user/session code pretty much like Holden's demo on github. When I have a session ...
0
votes
1answer
96 views

authlogic openid: fullname is not a defined simple registration field

I finally got an open id demo app going: rails 2.3.5 authlogic openid When I create a new user in the database, I get the following error: fullname is not a defined simple registration field ...
0
votes
0answers
177 views

Authlogic+OpenID- UserSession returns “not match any users” error

I'm working on OpenID authentication in my Rails app. Because Authlogic seems to be received well by the community, I gave it a try. I got to the point where I can register a new user with an ...
0
votes
1answer
212 views

Authlogic OpenID: Fetching E-Mail from Provider

This is a really weird problem: I have set up the authlogic_openid_selector_example app. When i register, the email id is not returned by the openid provider the first time. But if i delete the ...
0
votes
2answers
352 views

Authlogic openid: getting undefined method openid_identifier? error in functional test

I use Authlogic with the Authlogic-openid addon (I gem installed ruby- openid and script/plugin install git://github.com/rails/open_id_authentication.git) and get two errors. First when running ...