So I have a fairly bland skeleton Rails application I've been setting up but I'm hard stuck on a CORS issue I can't seem to solve. The CORS result is the following:
Access to fetch at…
When I try to login in my Rails app using omniauth-facebook, I'm getting the following error. This is when testing on localhost:3000:
Insecure Login Blocked: You can't get an access token or log in to this app from an insecure page. Try re-loading…
In rails omniauth-facebook, it requires a signed_request or a code as
params in auth/facebook/callback?
However, my problem is I can only get AccessToken from react-native fbsdk in app only, I tried using code: accessToken and signed_request:…
I'm have omniauth working in my Rails app on the top level domain.
Now I want to do it on any given subdomain (users each get their own subdomain assigned dynamically).
I can't find a way to dynamically change the callback url on the fly with…
I'm using the omniauth-facebook gem and would like to pass Facebook a string indicating whether the user is trying to join or login, so that I can use the information when they return to my site.
It would be great if I could do something like…
We just updated our ruby version to 2.0 from 1.9.3. From what I can tell we haven't updated omniauth omniauth-facebook or oauth in the upgrade. The upgrade however broke facebook login. Looking at the logs I don't see an email coming back in the…
I have implemented devise and omniauth-facebook following the instructions below:
https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
Problem
My "facebook" callback function does get called.
If I uncomment the "facebook" function, error…
I'm working with omniauth-facebook and devise gem. I want to get some information of an user. But I don't know why I can't get birthday.
Config in devise.rb:
config.omniauth :facebook, ENV["APP_ID"], ENV["APP_SECRET"], scope:…
I have Devise authentication installed with no problems. Now I'm trying to add an option to log in with Facebook, using Omniauth-facebook.
I followed the instructions in this guide, but I'm getting errors about missing "Passthru" documentation, when…
I am having an issue with Omniauth.
Here is what I want to do(at least what I understood devise_token_auth documentation):
Log in/signing up from client side using Facebook Login
After a succesful log in, my facebook app has to run the callback…
Following the gem's tutorial exactly I still seem to be running into some issues. I first click the link to sign up via Facebook and get redirected to Facebook. I click okay and get brought back to my registration page. No new user is created. If I…
Summary:
I have a CORS problem. I'm trying to authenticate with Facebook from a React app with a Rails API.
My app runs on localhost:8080 and my api runs on Heroku.
I'm able to login to facebook and create a session on callback, but the cookie set…
Is there a way to have the site (having sign in with facebook functionailty) grab the info from the Facebook app rather than grabbing from the Facebook site in the browser?
The current issue is that no one is actually logged into Facebook on their…
I am using omniauth-facebook gem to authorize using facebook in my rails application.
I have followed these instructions but the problem I am facing is error about invalid credentials:
(facebook) Authentication failure! invalid_credentials:…
I started to create a login with facebook followed this guide https://github.com/heartcombo/devise/wiki/OmniAuth:-Overview
I encountered this problem and this is my full logs start from go to login page until it failed
Started GET "/" for…