search for: open_id

Displaying 3 results from an estimated 3 matches for "open_id".

Did you mean: open_in
2007 Dec 06
3
anybody use OPEN_ID to authenticate?
how did it go? here is the link if you are interested: http://openid.net/what/ -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe
2007 Dec 23
3
InvalidAuthenticityToken problems with my login form
...t => ''6de86b5566d7598f57e757960760acd2'' my sessions_controller.rb doesn''t have anything new inside... same code as used with rails 1.2 (is it right ?) class SessionsController < ApplicationController def new @login = "" end def create if open_id?(params[:login]) open_id_authentication params[:login] else password_authentication params[:login], params[:password] end end what should I take care in this conversion ? thanks -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~...
2011 Aug 22
0
Authlogic and Authlogic-OID Question
Hello,I was wondering if anyone was using these and if so, hopefully you could explain something to me. When User::create is called when using an open_id, User::create gets called twice and the second call clears out the session. The first call to User::create deletes a row from open_id_authentication_associations and then inserts a new row into the same table. It then sets up the request to myopenid.com and fires it off. The second call to User::...