I am creating a website application which is running in rails. It currently use devise for authentication and has many field that a user has to have before they can register, i also implemented confirmable in order to verify their email is correct.
Now the issue is i am trying to allow user once created to invite friend on facebook to come to my application. That is where i am a bit confused, if i implement the idea of this tutorial https://github.com/plataformatec/devise/wiki/OmniAuth%3a-Overview, then the idea is that you either sign in with devise or with facebook, and if you are just as a user then you can't invite your friends.
How can i change this logic, i am looking for a simple way to login with either devise and facebook but in both view to allow user to either enter their own credential for facebook or use the one provided and to invite friends. how can this be done in rails.
Any hint, tips or tutorial links would be helpful!
Thanks
devise,omniauth,omniauth-facebookandkoala(for fetching user profile details, etc.) gems. We created anauthentications_controllerto handle OAuth callback/redirects from Facebookâthis would also create the user (if logging in for the first time) and store the OAuth tokens for that user in the database ('attaching' them to the existing user record, if ever), and so on. – AlistairIsrael Feb 28 at 1:18