Reputation: 1514
I want to implement Facebook's Registration plugin
How do I do it using Devise ? is there any Devise/OmniAuth extension available ?
Upvotes: 1
Views: 1015
Reputation: 6415
I think you're misunderstanding the registration plugin. It's aimed for web users that don't yet have a Facebook account. If you want to use that, then add it as a simple iframe with a callback returning them to you site, and then add a regular Omniauth Facebook login.
Upvotes: 1
Reputation: 21584
if you're using devise 1.2, the documentation is there in devise's github
https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
Upvotes: 1