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
25 views

Strange links with will_paginate and omniauth

I'm using the Omniauth Facebook gem and Will_paginate on a rails 3.2 app. On user profiles and only user profiles the next page url seems to be picking up a url from Omniauth. The next_page link is: ...
0
votes
1answer
29 views

is there omniauth code/plugin for facebook that i can put straight into my ruby on rails site?

I am making a social network on the teamtreehouse.com course in ruby on rails. However, on the course they do not add a 'sign in with facebook' feature. Is there any code i can put straight in so ...
5
votes
1answer
406 views

Force Omniauth login via popup when certain links clicked and then friendly forward

Following this Q&A thread, I've got it so that a user can log-in via Omniauth Facebook strategy using a popup. Here's my code: view: <%= link_to("Sign in with Facebook", "/auth/facebook", ...
10
votes
2answers
389 views

How to logout facebook - using code in rails application (Ruby on Rails Omniauth)

I tried to add more than one twitter and facebook accounts from my page via omniauth in rails. Twitter working fine using force_login parameter. But, facebook not supporting this. i can add only ...
3
votes
1answer
1k views

OAuth error when trying to authenticate with facebook through javascript and omniauth-facebook

Trying to implement Ryan's JS implementation of the facebook login, via his Railscast: http://railscasts.com/episodes/360-facebook-authentication Server-side auth works fantastic--no problems ...
2
votes
1answer
692 views

facebook javascript sdk get extra permissions with omniauth-facebook

i'm working on omniauth-facebook with fb js sdk ,it work pretty good for right now ,however i do not know why it cannot request extra permission. I already set in my omniauth.rb :scope for ...
1
vote
1answer
497 views

How do I stop my Facebook login popup from appearing if user is already logged into FB?

I have a 'Sign in with Facebook' button that generates a popup which asks the user to enter FB credentials. In the case where the user has already joined my app, left the app and then comes back ...
0
votes
1answer
637 views

Rails 3: Omniauth-Facebook: Won't load in a popup

I am using omniauth-facebook to handle Facebook auth, and it's working wonderfully. However, opening the facebook dialogs in a popup, which appear quite simple in the documentation, isn't working for ...
1
vote
1answer
386 views

OmniAuth Not Working with Jquery Ajax Call

I am trying to make a call to facebook connect via Jquery Ajax call. The call works if I am just using a link, but fails with the Ajax call. I am a novice with jquery and have difficulty even ...
1
vote
2answers
5k views

How to get authorization code from Facebook javascript SDK

I have devise/omniauth set up and now I would like to use the Facebook javascript SDK to login/ask for permissions and then route them to my omniauth callbacks controller. This is what I have ...