authlogic_oauth
authlogic_oauth copied to clipboard
Authlogic OAuth is an extension of the Authlogic library to add OAuth support. OAuth can be used to allow users to login with their Twitter credentials.
I had a similar issue with the openid plugin since it uses the same logic. For the validates_length_of_password_field_options, validates_confirmation_of_password_field_options, and validates_length_of_password_confirmation_field_options the :if option is ignored. It appears that a...
I'm getting the following error when trying to log in using authlogic_oauth and twitter: 1 error prohibited this user session from being saved There were problems with the following fields:...
I found a blog post that said to change the before_filter but that is not working. I keep getting this error. Please help. I can find no other help on...
I use the following code in my create action in the users controller. In the debugger, block_given? returns false, leading to problems. Is this expected? ``` @user.save true do |result|...
I get the following error when using the User model in a environment where there is no controller. Simplest solution is to add a condition to the authenticating_with_oauth? method in...
Isn't the purpose of having twitter login so that users won't have to register, but can just sign right in with twitter authentication upon their first visit? Maybe I am...
with returned oauth_token and oauth_verifier,how to get access_token?
I was just surprised that the gemspec for this project doesn't have a dependency on authlogic or oauth. The only real effect I suppose is that it cuts down the...
Hello, I'm getting an ActionController::DoubleRenderError when using authlogic_oauth to register a user with authlogic_openid also installed. The user is being saved in a block as recommended: @user.save do |result| etc......
Hi everyone. Is it possible to get twitter username / user id from authlogic_oauth after twitter authentication? I see twitter user id in the live example, but i still didn't...