Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

OmniAuth is a flexible authentication system for Ruby applications utilizing Rack middleware, such as Rails applications.

learn more… | top users | synonyms

1
vote
1answer
31 views

ruby on rails login facebook get information

I use omniauth-facebook and get information about users with this function in user.rb def self.find_for_facebook_oauth(auth, signed_in_resource=nil) user = User.where(:provider => auth.provider, ...
0
votes
0answers
13 views

rails app window closes when fb logged in user tries to land on app

I have a rails app which uses omniauth for authorizing users via Facebook. When users(who are logged into facebook) are not logged in to my application, and are clicking a link to my app URL from ...
0
votes
1answer
18 views

Logout from facebook, when logout from rails APP

In my rails app, i have been using omni-auth 1.4.0 for the facebook integration. So after i done the expire access token issue, when i logout from my app, the facebook will automatically logout.
1
vote
1answer
12 views

Unicorn and omniauth-facebook - uninitialized constant OmniAuth

So I am trying to get omniauth-facebook to work in my production env. It works fine locally on my machine using POW. My prod env is ubuntu with nginx/unicorn and code is Rails 3.2.13, the errors ...
0
votes
1answer
11 views

Rails OmniAuth NoMethodError with Facebook

I've been following this tutorial for setting up OmniAuth with facebook, however when I try to run /auth/facebook, I get an error as follows: NoMethodError in SessionsController#create undefined ...
1
vote
0answers
31 views

Rails login and registration by facebook using 'omniauth-facebook' how get language , education , work and other of an users

I use devise for the users and 'omniauth-facebook' so in my user.rb i have write this function: def self.find_for_facebook_oauth(auth, signed_in_resource=nil) user = User.where(:provider => ...
0
votes
1answer
23 views

why is omniauth initializing twice?

I am attempting to add facebook authentication to my site. So far I've added: Gemfile gem 'omniauth-facebook', '1.4.0' config/initializers/omniauth.rb Rails.application.config.middleware.use ...
1
vote
0answers
46 views

Sometimes “The specified feature has been temporarily disabled for this application”

it sometimes returned : {"error_code"=>"2000", "error_message"=>"The specified feature has been temporarily disabled for this application", ...
0
votes
0answers
43 views

scope not working for omniauth-facebook gem

I am using the omniauth-facebook gem (version 1.4.1) in a Rails 3.2.11 app. My code in config/initializers/omniauth.rb looks like Rails.application.config.middleware.use OmniAuth::Builder do ...
0
votes
0answers
28 views

Rails Devise facebook authentication asking for email - how to stop this?

I'm using facebook login with devise with only standard initializers (no scope): │FB.login (response) -> if response.authResponse window.location = '/auth/facebook' But yet when I go to ...
0
votes
1answer
50 views

OmniAuth connection failed with facebook callback

I'm using the OmniAuth GEM and have successfully got it working with the twitter strategy. I am now trying to set up the ability for users to also use there facebook login. I got it to the point ...
1
vote
0answers
165 views

Facebook login error: Refused to display in a frame because it set 'X-Frame-Options' to 'DENY'

I built a website with Ruby on Rails and want to use the facebook login. Using the Ominauth-Facebook gem, I am enable to log in on my computer. But when several friends tested it, they all got the ...
0
votes
0answers
43 views

Omniauth-facebook rails 3 => invalid credentials error

I am using omniauth-facebook gem in my rails app to authenticate with facebook. Everything worked fine, but recently i have "invalid credentials" error in my production server. (in local it still ...
0
votes
0answers
27 views

FB does not return email/birthday with email and user_birthday permissions granted

I'm using omniauth-facebook and FB Javascript SDK to do FB signup/login. The code asks for email and user_birthday permissions, so I assume that I could always get email and birthday. But the problem ...
0
votes
2answers
63 views

NoMethodError in SessionsController#create using Omniauth Facebook authentication railscast 360

Hi there I am currently following railscast 360 on adding Facebook authentication to my webapp. It was all going well until I started getting this error: "NoMethodError in ...
0
votes
1answer
28 views

What is the minimum set of permissions when using Facebook login with omniauth?

I am using omniauth-facebook 1.4.1 with Ruby on Rails 3.2.8 I want users to be able to authenticate using their Facebook account. All I need from them is their email address or first name. How do I ...
0
votes
1answer
52 views

Resizing remoted image(carrierwave)

I use carrierwave and omniauth(and omniauth-facebook) gems in my app. I think it makes no sense to describe how I use these gems. I get image from request.env["omniauth.auth] and save it to ...
1
vote
2answers
53 views

Omniauth-facebook: retrieve user location

I have the following configuration in my config/initializers/omniauth.rb provider :facebook, id, secret, {scope: 'email, user_location, user_birthday', image_size: {width: 400, height: 400}} But ...
0
votes
1answer
44 views

How dows Ketchup (gottaketchup.com) send facebook messages?

I've been searching all day and everything I can find indicates that it is impossible to send a message to a user's facebook friends via the Graph API. I understand that I can send a link as a ...
0
votes
2answers
46 views

Adding Facebook Authentication to Rails Custom Authentication

I am currently creating a rails application that requires authentication. Currently, I'm doing custom authentication like that shown in in the following railscast episode: ...
1
vote
1answer
79 views

Facebook APP Multiple Domains

I am setting up a Ruby on Rails app to allow login via Facebook with Devise + Omniauth. I can got this working no problem with the APP ID and Token. However I am having an issue that I am not sure ...
0
votes
0answers
360 views

Facebook Login within a modal using Omniauth, Ajax and Rails

Currently I am working on enabling sign in's via social networks(in this case facebook) from within a modal and using omniauth. Because there are certain dom changes that need to happen on success, I ...
0
votes
1answer
32 views

Prompting for User Name with Omniauth-Facebook

I'm using Devise with my Rails app and I'm looking at using the Omniauth-Facbook gem. My app has views that show the users's by user name. What I haven't been able to figure out is how I can prompt ...
0
votes
0answers
62 views

omniauth-facebook issues “Invalid_Credentials”

I have a very strange problem, but only at production server. I was using this Gem in my Gemfile. gem "omniauth-facebook", "~> 1.4.1" But suddenly started getting the following error on ...
0
votes
1answer
65 views

OmniAuth NoAuthorizationCodeError

I'm using rails 3.2.11 and omniauth gem to authenticate users with their Facebook account. Gemfile gem 'omniauth-facebook', '1.4.0'. /config/initializers/omniauth.rb require 'facebook' ...
0
votes
1answer
73 views

How to add user authentication and ask for more FB user permissions in a facebook page tab app?

I am designing some FB Page Tab apps which will needs the FB user information. I want to ask for user permission as soon as the user hits the Tab of the application installed on the page. Then, if I ...
0
votes
1answer
163 views

Omniauth-Facebook callback does not get initialised in Rails Mountable Engine

I'm developing a mountable engine (called SimpleUser) which uses Devise, OmniAuth and OmniAuth-Facebook. First I made a test app with the gems about and every worked fine. Next, I started building the ...
0
votes
1answer
86 views

Which is the right path to place an initializer in a Padrino sub application

I'm working with OmniAuth-Facebook and initializing it in mysubapp/app.rb: require 'omniauth-facebook' class MySubApp < Padrino::Application register Padrino::Rendering register ...
-1
votes
1answer
78 views

Allow Existing Users to Add Facebook Accounts

In my app, users can login with Facebook using the code from this tutorial. The only issue is I want to allow users who signed up for my app the old fashioned way (As in users go to the signup page ...
0
votes
1answer
54 views

How do I setup omniauth-facebook on an already existing omniauth and devise rails app?

So, I followed the instructions as mentioned here http://railscasts.com/episodes/235-devise-and-omniauth-revised and successfully setup the the sign in and sign up with twitter option. Now I am trying ...
0
votes
1answer
112 views

Facebook Omniauth routing error in Ruby on Rails

I followed Rails Casts Episode #360 on how to integrate facebook login. When I click 'Sign in with Facebook', I get this error: Routing Error No route matches [GET] "/auth/facebook" Here is my ...
0
votes
0answers
55 views

Rails sign in facebook

I use omniauth-facebook gem. Generally I'm completely following railscast episode #360 (http://railscasts.com/episodes/360-facebook-authentication?autoplay=true) So I did all like in tutorial. After ...
2
votes
1answer
179 views

Rails 3.2 Devise Omniauth-facebook and koala

I am trying intergrate Koala into a devise omniauth-facebook app. For some reason i cannot post to user's wall. I created a second app which doesn't use devise and all works and i realise that the ...
0
votes
1answer
112 views

Devise Omniauth callback error

I have a web application running Devise and Omniauth to authenticate a user on Facebook. When I click on a link to log in though Facebook, it routes me to ...
2
votes
0answers
83 views

Set different facebook oauth scope per user with devise

I have a rails app with two separate types of users (call them A and B). Right now they can both sign in with facebook. However, I need B to be able to oauth with some extended permissions, and I DO ...
2
votes
2answers
334 views

Omniauth-facebook popup authentication does not return omniauth.auth

I have struggled with this for 2 days now: I have Omniauth-factbook implemented correctly with Devise. Now, I want to improve it by making the Facebook authentication occurs in the popup window ...
8
votes
2answers
302 views

Rails omniauth-facebook unsolved issue

The current omniauth-facebook seems to have some issues, and I want to know if anyone has answers to them. First issue was the invalid credentials problem. I couldn't log in to my application using ...
0
votes
2answers
171 views

Facebook Authorization on Rails app: why do we need to do Both server and client side authorization?

In Ryan's Railscast on Facebook authorization, he adds some Facebook SDK javascript at the end to "degrade facebook client side authorization with server side authorization." However, I do not see the ...
0
votes
0answers
87 views

Am not getting the request.env['omniauth.auth']['credentials'] OR request.env['omniauth.auth']

Am using omniauth facebook, am not getting the hash of omniauth.auth, after raise params[:auth], instead am getting accessToken, signedRequest, userID What am i doing wrong, can u people please help ...
0
votes
0answers
49 views

login to app with facebook token only using rails and omniauth

Is there any way I can create/log in user with omniauth gem if I know only his facebook token? I have token saved in database for users wich already logged in before from my app, but the token goes ...
1
vote
1answer
172 views

Facebook login with devise for rails doesn't return a real email

I've followed the tutorial on the wiki at devise to enable facebook login using omniauth-facebook gem. It works and signs the user in and even creates an account however theres one issue here. The ...
0
votes
1answer
254 views

Rails Facebook Omniauth Faraday Error

I have a OS X 10.8.2 with ruby-1.9.3-p374 and rails 3.2.11. I have followed the #360 Facebook Authentication guide on rails cast but when i try to sign in i receive the error: ...
0
votes
0answers
102 views

Omniauth-facebook :scope not working

I have the following code however it doesn't seem like the permissions in :scope is being requested. I also have the facebook app set up properly. Is there something I'm missing here in code where the ...
0
votes
1answer
36 views

Facebook signed in user in rails how to access its information and get subscriptions

I'm usign omniauth to login user from facebook and I'm also using devise gem so in my devise.rb initializer file. I added config.omniauth :facebook, app_id, app_secret, {:scope => 'email, ...
0
votes
1answer
293 views

OmniAuth-Facebook : This authorization code has been used

I'm using Omniauth-Facebook to create and authenticate User. For the two first users, it worked well. But it fails for the third one. BUT, I still can authenticate, it's the CREATE processe which ...
1
vote
1answer
60 views

render current_page after connect with facebook rails [closed]

I have blog app, and users can comment on blog if already logged in connect with facebook, I'm using omniaut-facebook gem. I put a link connect w/ facebook on any localhost:3000/blogs/:permalink how ...
0
votes
1answer
95 views

How to merge facebook account into existing account with Devise

I followed the steps here and was running into some problems in merging the accounts Based on the instructions, I added the following method to my ApplicationController def ...
0
votes
1answer
230 views

How to get facebook login working with devise, omniauth - cannot overcome controller error

I am working on getting Facebook working with devise and omniauth. I have been trying to figure this out for days now without success. When I press the 'Facebook connect' button, the login page comes ...
0
votes
0answers
71 views

How to check if currently logged in user is under Facebook session

I would like to add a helper method for checking whether a currently logged in user signed in using Facebook. I tried this, but it failed to work: def facebook_user session['facebook_data'] end ...
0
votes
1answer
139 views

Omniauth-Facebook Redirect to signup form - Rails 3.2

I have an existing signup form that handles users that want to sign up with an email, username and password. I want to have the option to also signup using Facebook. I've managed to get the auth part ...

1 2 3 4 5 6