amrnt
amrnt

Reputation: 1331

How to integrate Facebook the new Graph Api with Authlogic in Ruby on Rails?

Edit: What I recommend now with any Ruby application to use omniauth gem to get access_token, etc. and to use koala gem for Facebook Graph API.

I've began with a new project using Authlogic system for Authorization.

And I'm now wondering how could I connect Facebook oAuth sessions with my Authlogic session!

First of all I want to use and Authlogic-oAuth Gems/Plugins, I what I want to use are just

I tried using Authlogic with authlogic-connect extension, but It didnt fill up my needs. And I think the three of the amazing gems above togother will make things done in quality and as I want.

Thanks in advance.

Upvotes: 2

Views: 2290

Answers (3)

james2m
james2m

Reputation: 1580

I used koala for the FB graph api and bridged that with authlogic with a bit of a rapidly thrown together gem authlogic_facebook_koala it's rough and ready but it bridges the gap between login via the JS SDK and authlogic.

Upvotes: 1

PanosJee
PanosJee

Reputation: 3866

any clues if you can use the Javascript SDK? it seems that Facebooker is no longer needed

Upvotes: 0

Andrew Hite
Andrew Hite

Reputation: 36

I just released a gem yesterday that adds OAuth2 support to Authlogic. You can find it here: http://github.com/andyhite/authlogic_oauth2

Upvotes: 2

Related Questions