I am implementing Facebook Login on my App and have the following call back function. If the user is previously exisitant he should automatically be logged in.
Error:
undefined method `user' for # on this…
I am trying to provide Sign Up with either an email and password or using Facebook.
I have tried using https://github.com/plataformatec/devise/wiki/OmniAuth%3a-Overview
I followed each of the steps, but I run into the following error in Terminal…
I have the following Table Structure where a User has many Oauths.
create_table :users do |t|
t.string :name
t.string :email
t.string :age
t.string :gender
t.timestamps
create_table :oauths do |t|
t.string…
I'm having issues with getting saving a facebook login into my database. I'm getting the error in my browser.
Could not authenticate you from Facebook because "Invalid credentials".
And this error is in my terminal. Any ideas? I've been browsing…
Everyone, I am using devise with my rails 4 application and omniauth-facebook and active-admin.
When I am trying to sign-in exactly from sign-in page, after the authentication process, the page just refreshes (doesn't redirect to root_path as…
I have read a lot about allowing users to log into my rails app via facebook omniauth, though I would like users, having loggeed in, to be able to post a to their own personal wall by simply clicking a button in my app. Is this possible? I'm not…