Questions tagged [authlogic-oauth]
15 questions
7
votes
1 answer
Configuring authlogic-oauth with google
I am trying to learn rails, and I'm working on an app that uses Google for logins and also for calendar data. I'm currently working on configuring authlogic-oauth and having some issues.
I've been following the guide for the authlogic-oauth (see…

Zak
- 377
- 1
- 5
- 14
5
votes
3 answers
single-sign-on authentication using Facebook on Rails -- AuthLogic or Devise?
I want to create a single sign-on using Facebook (right now) that will not only authenticate but create a new user or login and grab the associated user.
I have seen old version of both authlogic and devise being able to use the Facebook Connect…

Satchel
- 16,414
- 23
- 106
- 192
2
votes
0 answers
Rails with authlogic and omniauth
I've seen quite a few tutorials, and I've completed a few implementations of simply 'connecting' social accounts to authlogic using an authorizations model. But I'm having trouble coming across something that explains how people have implemented the…

Rabbott
- 4,282
- 1
- 30
- 53
1
vote
1 answer
OAuth with authlogic and twitter. Doesn't redirect properly
I have an issues with connecting loose end in oauth and authlogic.
I'm running rails 3.0.9 with authlogic working fine and I wanted to add on twitter login.
The issue that I'm having is that after logging in on twitter instead being redirected to…

Cac3a
- 117
- 1
- 10
1
vote
1 answer
401 error when using authlogic oauth
So I'm trying to get the oauth authlogic plugin (https://github.com/jrallison/authlogic_oauth) to work on my rails app which already has regular authlogic installed. I believe I've set up everything in accordance with the tutorial but I'm getting…

Kenji Crosland
- 2,914
- 6
- 31
- 40
1
vote
1 answer
django base64 decode encode returns different value
I was wondering if something can shed some light on where I might be going wrong with this.
I need to generate a signed Key for use with Gigya an openauth platform
This is a rework from their Ruby…

ApPeL
- 4,801
- 9
- 47
- 84
0
votes
1 answer
authlogic_oid redirecting to /user_sessions#index instead of /user_session#create
I'm writing a rails3 app using authlogic and authlogic-oid to allow the user to login and register using their LinkedIn account. I'm able to call out to LinkedIn to authenticate but the issue I'm having is that when the call returns to my rails app,…

spinlock
- 3,737
- 4
- 35
- 46
0
votes
1 answer
Authlogic_Oauth calling GET /user_sessions
I'm writing a rails 3 app and I'm trying to let people sign_in or sign_up using LinkedIn. I've followed the tutorial at https://github.com/datawrangling/linkedin_on_rails but I'm getting some weird results. For some reason, the application is…

spinlock
- 3,737
- 4
- 35
- 46
0
votes
2 answers
Authlogic_OAuth fails with error "uninitialized constant UserSession::OAuth" in Rails 3
I've gotten my application to work (i.e. sign_in and sign_up) with Authlogic and I'm now trying to add support for OAuth through the Authlogic_OAuth gem. I've gotten all of the basics set up (I think) and I've added a "Login with Twitter" button to…

spinlock
- 3,737
- 4
- 35
- 46
0
votes
2 answers
request and access tokens in oauth
Can someone explain why request tokens must be exchanged for access tokens after user approval? Why not pretend the request token is the access token once the user has approved access?

David K.
- 6,153
- 10
- 47
- 78
0
votes
1 answer
Sending a tweet using Authlogic-OAuth
I'm building a Rails application which uses Authlogic for authentication, which I've now set-up to run using the OAuth extension, meaning a user can be created by signing in from Twitter.
This stores their OAuth token and OAuth secret, meaning…

wastedhours
- 257
- 5
- 14
0
votes
2 answers
How do I add a user model to my application so data is "user" specific in my Rails app
looking to see if there are some ideas on how I should introduce the idea of a logged-in "user" that effectively 'federates' the data....let me explain.
I have been building my app so far as if there is only one user. Me. All the data and reports…

Satchel
- 16,414
- 23
- 106
- 192
0
votes
1 answer
optimistically save session in authlogic
I am trying to create similar functionality as this gem authlogix-rpx, which optimistically saves the session/user object even if some of the validated fields are missing.
http://github.com/tardate/authlogic_rpx/tree/master/lib/authlogic_rpx (line…

badnaam
- 1,876
- 4
- 29
- 53
0
votes
1 answer
Issue with accepts_nested_attributes_for while using authlogic_oauth
I have the following models:
class Merchant
acts_as_authentic
has_one :store
accepts_nested_attributes_for :store
end
class Store
belongs_to :merchant
end
I am using authlogic_oauth gem for Twitter authentication. While registration I save…

Harish Shetty
- 64,083
- 21
- 152
- 198
0
votes
1 answer
Whats wrong with installing facebooker rails?
I try to install rails facebooker to my authlogic gems from here https://github.com/kalasjocke/authlogic_facebook_connect, but if sudo gem install facebooker
i get
from…

byCoder
- 3,462
- 6
- 28
- 49