Displaying 10 results from an estimated 10 matches for "open_id_authentication".
2008 Apr 20
2
open_id_authentication - authenticate_with_open_id
I''m using the open_id_authentication plugin just like the README
says. However, when I submit my openid_url, the
authenticate_with_open_id method gives me the error below.
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
150:in `+''
vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:
150:...
2011 Apr 09
1
Problem with "open_id_authentication" plugin
...from
C:/Ruby192/lib/ruby/gems/1.9.1/gems/activesupport-3.0.6/lib/active_support/dependencies.rb:225:in
`load_dependency''
from
C:/Ruby192/lib/ruby/gems/1.9.1/gems/activesupport-3.0.6/lib/active_support/dependencies.rb:239:in
`require''
from
D:/cfecardgame/vendor/plugins/open_id_authentication/lib/open_id_authentication.rb:2:in
`<top (required)>''
from
C:/Ruby192/lib/ruby/gems/1.9.1/gems/activesupport-3.0.6/lib/active_support/dependencies.rb:239:in
`require''
from
C:/Ruby192/lib/ruby/gems/1.9.1/gems/activesupport-3.0.6/lib/active_support/dependencies.rb:...
2008 Aug 30
3
Working with sessions in beast forum
...led about how (and where exactly) I have to do it. The following
code is used when creating a session:
class SessionsController < ApplicationController
def create
if using_open_id?
cookies[:use_open_id] = {:value => ''1'', :expires =>
1.year.from_now.utc}
open_id_authentication
else
cookies[:use_open_id] = {:value => ''0'', :expires =>
1.year.ago.utc}
password_authentication params[:login], params[:password]
end
end
protected
def open_id_authentication
authenticate_with_open_id params[:openid_url] do |result,
openid_u...
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
2010 May 21
0
OpenID Authentication using AuthLogic
Hi, I am trying to implement openid authentication using authlogic. I
have installed the open_id_authentication in the process but when I
entered
rake open_id_authentication:db:create --trace
I get the following error
(in /Users/felix/login)
rake aborted!
Don''t know how to build task ''open_id_authentication:db:create''
/usr/local/lib/ruby/gems/1.9.1/gems/rake-0.8.7/lib/rake.rb:172...
2011 Feb 18
1
Rails plugins new official maintainers
...rist
Joel Moss
Devdatta
exception_notification (https://github.com/smartinez87/exception_notification)
Sebastián MartÃnez
Jason King
Devdatta
acts_as_list (https://github.com/swanandp/acts_as_list)
Mark Turner
Swanand Pagnis
hide_action (https://github.com/sikachu/hide_action)
Prem Sichanugrist
open_id_authentication (https://github.com/Velir/open_id_authentication)
Anuj Dutta
Patrick Robertson
asset_server (https://github.com/andhapp/asset_server)
Anuj Dutta
Rishav Rastogi
in_place_editing (https://github.com/amerine/in_place_editing)
Mark Turner
Devdatta
upload_progress (https://github.com/rishav/upload_pr...
2007 Dec 23
3
InvalidAuthenticityToken problems with my login form
...98f57e757960760acd2''
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/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are sub...
2010 Mar 24
3
How to include a ruby gem environment.rb file?
...program sends this
message:
C:/Users/usuario/Desktop/Servidor/test/config/environment.rb:26: private
method `gem'' called for #<Rails::Configuration:0x5c5dbcc>
(NoMethodError)
On this page:
http://api.rubyonrails.org/files/vendor/rails/railties/CHANGELOG.html,
is as follows:
# OLD open_id_authentication plugin init.rb require ''Yadis'' require
''openid'' ActionController:: Base.send: include OpenIdAuthentication
# NEW config.gem "ruby-openid",: lib => "openid",: version => "1.1.4"
config.gem "ruby-Yadis",: lib => &qu...
2011 Mar 11
2
Problem with Redmine
...or if that will break
the application.
When doing a db migrate to an Oracle db this creates the error below.
I''m so close, but now when I do:
RAILS_ENV=production rake db:migrate --trace
I get:
AddOpenIdAuthenticationTables: migrating
================================
-- create_table(:open_id_authentication_associations, {:force=>true})
rake aborted!
An error has occurred, all later migrations canceled:
OCIError: ORA-00972: identifier is too long: CREATE TABLE
"OPEN_ID_AUTHENTICATION_ASSOCIATIONS" ("ID" NUMBER NOT NULL PRIMARY KEY,
"ISSUED" NUMBER, "LIFETIME"...
2008 May 27
6
case...when statement bug when using openid_authentication?
Hello people!
I''m asking for help to solve a little problem concerning the usage of
the openid_authentication plugin. I''m following the README file included
by DHH, so I wrote this method in my SessionsController:
def open_id_authentication(identity_url)
# Pass optional :required and :optional keys to specify what sreg
fields you want.
# Be sure to yield registration, a third argument in the
#authenticate_with_open_id block.
authenticate_with_open_id(identity_url,
:required => [ :nickname, :email ],...