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.

Devise is an authentication gem for Ruby-on-Rails. It supersedes previous solutions such as Restful Authentication or Authlogic.

learn more… | top users | synonyms

0
votes
0answers
44 views

Rails API, Devise & Mobile App.

I am designing a Rails application which will be consumed from a native mobile application. I am new to Rails and thus I feel a bit lost. I want to achieve the following: • Users of mobile ...
0
votes
0answers
27 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
0answers
35 views

Rails app (using devise) with manual login called by android app with facebook login

I need to manually create a user having devise installed and working. I have found in this question the answer to do it: @user = User.new(:email => 'test@example.com', :password => 'password', ...
0
votes
2answers
45 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
0answers
43 views

Can't dup NilClass using find_for_facebook_oauth - what's wrong with oauth?

I rewrote the find_for_facebook_oauth method slightly to allow my users to merge their facebook accounts to their current accounts. I also modified the method to create a new participant (which is ...
1
vote
1answer
75 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
1answer
30 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 ...
-1
votes
1answer
73 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
0answers
13 views

Logging in through Rails + Devise from Android device

I have successfully been able to send an FB token and get back an authenticity token, but once I have that, how do I allow a user from an Android device to POST to a URL? For example, one of my ...
0
votes
1answer
109 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
80 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
318 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 ...
0
votes
0answers
24 views

After signing out from rails app not able to signin with different facebook id

I have a rails app with devise and facebook authentication. First time sign in with facebook is working fine but once I signed out and try signing in again with facebook its taking me to directly to ...
2
votes
0answers
91 views

using omniauth for facebook login with only access token

I am creating an api in rails for mobile application. Now the user will login using facebook and i will recieve the access token post facebook authentication. I have to take this access token and ...
1
vote
1answer
171 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 ...
1
vote
2answers
78 views

Spam accounts being created via Facebook login

I've got a Rails App that uses Facebook for user accounts, and as of this evening, someone in Vietname has decided to (for whatever reason) use a bot to create fake accounts on my site using fake ...
0
votes
1answer
84 views

Rails Devise Api + Facebook iOS SDK, security concern

I am currently developing an app that will use the FB SDK (for the first time) to log a user into the app. The flow is typical, I assume. User taps "log in with facebook", facebook graph ...
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
229 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
0answers
73 views

linking user accounts to their twitter/facebook/etc accounts

I have an existing rails app which uses 'devise' for authentication. I would like user's to be able to link their twitter and facebook accounts to their account on my site, so that my application can ...
0
votes
0answers
206 views

Omniauth facebook popup callback hash empty?

I implemented omniauth-facebook with devise and everything worked perfectly. However when I implemented some coffee script (from Railscasts #360) I cannot get the callback to work. As I see it, it ...
0
votes
0answers
135 views

Link facebook to existing account / omniauth

Simple as that, I want to link to an existing user account his facebook profile (giving priority to the email that has originally registered with) in my rails app, using omniauth and devise. I have ...
0
votes
0answers
225 views

Rails, Devise, OmniAuth: request additional fields and store them in the db

I'm a newbie in Rails. So...in my Rails app, where I have OmniAuth Facebook integration, I want to add some fields, e.g., first name, last name and location, to my database. I followed this wiki, ...
0
votes
0answers
43 views

Implementing Oauth on a Facebook Authenticated Website

I have a Rails app that uses Omniauth to authenticate via Facebook but now its time to build a mobile app that interfaces with the Rails app. I'm thinking of using Oauth to authenticate but would it ...
0
votes
2answers
380 views

“Invalid Credentials” after authorizing app on Facebook (using Devise, omniauth :facebook)

I've followed the instructions on the Devise wiki for logging in with a Facebook account. It works, mostly. The problem is, I will log in (user_omniauth_authorize_path(:facebook)), which brings me ...
0
votes
0answers
29 views

Rails: Page goes to bottom after logging in with Omniauth/Facebook

I have a signup and signin button on my webpage, which when clicked displays a modal showing the login form. If I click 'login with facebook,' it logs me in but it takes me to the bottom of the page. ...
1
vote
1answer
68 views

what is recommended for handling password for new Facebook signed in users?

When let users sign in using Facebook, I create a new devise user after first authentication, the question is what is the better practice to do regarding the password of newly created user ? 1. Fill ...
0
votes
1answer
220 views

Facebook login with devise

I use omniauth-facebook 1.4.1 with devise to login with facebook. There was error of Could not authorize you from Facebook because "Csrf detected". It seems people solve this problem by downgrade ...
4
votes
2answers
2k views

Routing Error uninitialized constant Users

I am a rails newbie... I am trying to set up Sign in with facebook for a demo app. I am using OmniAuth and following this tutorial https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview I ...
2
votes
1answer
253 views

User does not store in database after successful login from Devise thru Omniauth (Rails 3)

It seems that I cannot save users from my database even though omniauth controller confirms successful login. I followed the instructions from the omniauth wiki: ...
0
votes
1answer
106 views

How to handle authentications in rails with omniauth, devise and facebook

I have implemented facebook authentication in my rails app with devise and omniauth according to this railscast: http://railscasts.com/episodes/236-omniauth-part-2 My question is how to handle the ...
2
votes
1answer
601 views

OmniAuth + Devise - Facebook provider - OAuthException 191

Solution As mentioned by @AshitakaI had to remove my old and deprecated omniauth.rb, so my final and working configuration is the following one: config/initializers/devise.rb In order to make ...
0
votes
0answers
71 views

How can i use the Facebook authentication in devise and send the iphone app the authentication token to use?

I use devise for authentication and i cloned an example from github which works good and now i want to use this for authenticating users from iPhone app and i have used token authentication so it ...
0
votes
0answers
103 views

Devise omniauth login with facebook

I followed this guide to setup facebook sign up for my page. But my problem now is to get the users to sign in again when they visit the page. Currently users are given a random password when they ...
1
vote
1answer
114 views

How can i allow iphone app to login using facebook using devise?

I want users to login with their facebook account through devise from iphone app. consider when i send the id and password as curl -H 'Content-Type: application/json' -H 'Accept: ...
1
vote
1answer
730 views

Rails devise - Facebook + Twitter +

I'm thinking to use devise gem for a new Rails app I'm working on. I'm a bit confused about a thing. The app will allow the user to connect to FB, Twitter and possibly other social network ...
0
votes
1answer
92 views

Make facebook the ONLY / default login for devise canvas app

I am making a Facebook canvas app hosted on heroku. For authentication I am using devise gem with the omniauth-facebook gem. Currently when the app is opened it asks you to "Sign In" with your email ...
0
votes
0answers
17 views

Facebook omniauth request didn't return 'name' [duplicate]

Possible Duplicate: How to obtain username/name for a company facebook account? I have an app that lets a user sign up through Facebook using Devise and Omniauth. It works a lot of the ...
1
vote
1answer
98 views

How to ensure Facebook users provides their emails?

The problem The site I am working on is a Rails app which lets users sign in with their Facebook account. On the Facebook Auth Dialog page, they are requested to provide basic information and email. ...
1
vote
0answers
146 views

Authenticating with Devise in a Facebook Canvas

I am creating a Canvas Facebook application. In this canvas i want to show a built with rails (v.3.2.8) application, which authentication part is managed by Devise 2.1.2. I followed the Facebook ...
1
vote
1answer
200 views

Devise + omniauth-facebook Add permissions

we are letting the users sign up with minimum permissions like this: Devise.setup do |config| config.omniauth :facebook, ENV['FACEBOOK_KEY'], ENV['FACEBOOK_SECRET'], :scope => ...
0
votes
1answer
28 views

How should I log the user in based on a token?

I have users (a model), each with authorizations (a related model) to one oauth system or another (facebook for example). I want a user to be able to login using information passed in the query ...
0
votes
1answer
250 views

Adding facebook birthday information to some model in rails / devise / omniauth

I had problems getting the birthday information from facebook into my app. Biggest problem was misunderstanding the permissions page from FB: ...
0
votes
0answers
118 views

The action 'facebook' could not be found for AuthenticationsController

I am trying to configure FB connect with my app. It used to work fine until July 18, 2012. I have not modified any code, but now it stopped working. Using devise and omniauth When I am trying to ...
0
votes
1answer
167 views

how to logout from both facebook and devise

I have the following scenario: User logs in with Facebook connect (devise, omniauth) User starts browsing around the site User logs out from Facebook User can still browse around. <-- how can I ...
1
vote
1answer
861 views

How to integrate facebook comments in Rails application?

I've set up a Rails 3.2 application with Devise. I was wondering how I can allow users to comment using Facebook. Can I use facebook connect along with Devise? If I can, is it ok to have 2 methods of ...
1
vote
2answers
36 views

Confirming a Facebook Access Token?

We're using the Facebook JS SDK to authenticate users to our application, then sending that information to the server back end to log our user into the application (we support multiple forms of ...
0
votes
1answer
235 views

Omniauth + Devise Redirect Error

I have the following problem: My app is running as a Facebook app, but on the first time that the user accept's it's Facebook permissions, it's redirected to the right URL, but outside the Facebook ...
2
votes
2answers
291 views

Devise integration with Facebook AppCenter

I have an application which integrates with facebook via oauth2 devise/warden/omniauth. Everything works find and I am happy with it. Now I'm trying to integrate the app with the new facebook ...

1 2 3