Tagged Questions
1
vote
0answers
30 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
1answer
49 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 ...
0
votes
0answers
59 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
60 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
47 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 ...
2
votes
1answer
171 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 ...
2
votes
0answers
77 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 ...
0
votes
1answer
35 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
0answers
56 views
OmniAuth with December migration
Has anyone successfully enabled the December 2012 migration for an app (pref Sinatra) using OmniAuth-Facebook? With the migration disabled we're running fine, but with it enabled all auth requests ...
-1
votes
1answer
70 views
How do I compare two facebook UIDs to determine if they are friends?
i have authenticated users using devise and omniauth facebook gem in my rails 3.2 app. How can i determine if two users are friends based on their uid only? Is it better to use Facebook query language ...
0
votes
1answer
102 views
Facebook SDK Invite Requests with OmniAuth - Getting the user that sent the request
I have a facebook app which uses the javascript SDK to allow the user to send invites to their friends to join the app.
Let's say Joe invites Mike.
Mike clicks on the request and is directed to the ...
0
votes
1answer
231 views
Resize facebook profile picture
Iam trying to resize the facebook profile picture to large. I understand that in order to make the profile picture large i must input
http://graph.facebook.com/id/picture?type=large
from what i ...
0
votes
1answer
412 views
Rails 3.2 with Omniauth-Facebook - Scope for Permissions issue
I've followed Railscast 360 to setup Omniauth-Facebook authentication for my Rails app. The authentication works well, but i'm driving myself crazy trying to pass the scope request for additional ...
0
votes
1answer
116 views
How to determine if a user allows my app to post to facebook
I have a rails app that uses omniauth to enable user registration through facebook. My facebook app requests permission from the user to make posts to facebook on the user's behalf. My question is, ...
0
votes
2answers
137 views
OmniAuth ruby on rails, forcing facebook user to re-authenticate when currently logged into facebook
I have a facebook application that the user has authorized. I want to re-authenticate when their token has expired. The problem is that when the user is already logged in to Facebook, and they have ...
0
votes
1answer
88 views
facebook information for user revived after it is authenticated in session control
I am working with omniauth to sign in the user through facebook(facebook login).
That happens in session controller. My backend database in handled by parse.com, basically it provides an authdata ...
0
votes
1answer
181 views
Determine if user's Facebook image is the default with Omniauth
I am getting the user's facebook image with:
https://graph.facebook.com/#{omniauth.uid}/picture?type=large
But how can I check if that is the Facebook Default image? If it is, I have my own image I ...
0
votes
0answers
97 views
Rails 3 + OmniAuth - How to get back the Facebook uid of the registered users in my db? [closed]
A while ago, I've installed OmniAuth in order to sign my users up with Facebook. The problem is I forgot to save their user ids, and now I need to know them for a Facebook app I'm developing.
Is ...
0
votes
1answer
236 views
Do I need to use omniauth with fb_graph
I use omniauth to autenticate user with my rails app, I read a lot about fb_graph gem and I was wondering:
What does fb_graph do in plain english?
Can I only use omniauth if I want to grab all my ...
0
votes
0answers
45 views
Differences between omniauth facebook gem and fb_graph gem for Rails [duplicate]
Possible Duplicate:
Do I need to use omniauth with fb_graph
I am tinkering with omniauth-facebook gem and fb_graph gem for Rails. And I was wondering what is the big differences between ...
0
votes
1answer
188 views
How to shrink the omniauth FB dialog
In my omniauth initializer file I have these settings:
provider :facebook, 'a_key', 'another_key',
:scope => 'email', :display => 'popup'
But when the fb authentication dialog occurs, ...
4
votes
3answers
2k views
get user profile large picture from facebook with omniauth in devise 2.0
I want get the user profile large or normal picture from facebook. Now I get the square version from user profile picture with this code:
:image => access_token.info.image
# ...
0
votes
2answers
304 views
Facebook permissions dialog displaying in different languages
I'm working on an app that makes heavy use of facebook's graph API. I'm requesting the following permissions:
my_photos
friends_photos
my_relationships
relationship_details
hometown
I'm using the ...
1
vote
0answers
210 views
How to delay asking for Facebook timeline post permission until it's needed, with Omniauth?
For my site, I'm using Omniauth for Facebook authentication, and use Koala to access some misc. data about users.
The site hosts user generated content that's pretty visual, and I used to just use ...
0
votes
1answer
175 views
Save Facebook data with custom values
I trying to use login with Facebbok but I have trouble. I don't know how to do this:
User use Facebook Connect and accept website's application.
Next, user is redirected to form where he give ...
0
votes
1answer
236 views
My facebook login button works using omniauth, but I don't get to the “allow” screen
I've added a facebook login button using the omniauth-facebook gem. It does the roundtrip to facebook and back with the omniauth.auth hash and all of the user's info. But I don't get the ...
6
votes
3answers
3k views
Access token from devise+omniauth-facebook authentication for using in fb-graph
I used devise and omniauth-facebook in my Rails 3 app for Facebook authentication, based on this tutorial: Adding Facebook auth to Rails 3.1 app, and it's working great!
But now I want to have full ...
4
votes
1answer
2k views
Devise + Omniauth + fb_graph + Rails 3 Tutorial
Can anyone suggest a good and complete tutorial on how to set up Facebook authentication with Devise and Omniauth in Rails 3, and then integrate it with Facebook Graph API using fb_graph?
I have ...
8
votes
2answers
6k views
Facebook app - login through omniauth - OAuthException 191
I am facing with the problem:
"error": {
"message": "Invalid redirect_uri: Given URL is not allowed by the Application configuration.",
"type": "OAuthException",
"code": 191
}
...
7
votes
1answer
3k views
Rails: retrieving image from Facebook after Omniauth login with Devise
I setup Facebook login with Devise and omniauth with these instructions https://github.com/plataformatec/devise/wiki/OmniAuth:-Overview
The Devise wiki gives some instructions for getting facebook ...
-1
votes
1answer
206 views
Facebook API: How to acquire access_token server-side and use it client-side?
I am building a rails app that scrapes user's graph API content regularly. My first approach was to do this completely serverside, using Omniauth for authenticating and Koala for interacting with ...
0
votes
1answer
237 views
omniauth with authlogic issue with authentications method
I've been following this tutorial: http://emumair.wordpress.com/2011/03/17/social-network-authentication-with-omniauth-and-authlogic/. I've walked through it all and I'm getting this error:
...
0
votes
1answer
261 views
FbGraph cannot update status
I wrote a Rails application. I used omniauth for authentication.
session.rb
auth = request.env["omniauth.auth"]
user = User.find_by_provider_and_uid(auth["provider"], auth["uid"]) || ...
5
votes
2answers
1k views
Deprecated offline_access on facebook with RoR
We have a problem in our RoR app. We are using a facebook authentication with omniauth, and searching the user friends with Koala. But lately, when we try to show a friend photo, we got this error:
...
1
vote
2answers
718 views
What is the proper way to use OmniAuth + Devise when developing a Facebook tab?
I'm developing a simple Facebook app that will live in a Page's tab. I'm trying to figure out what the best method is for authenticating users. It seems that normal page redirection isn't right, which ...
0
votes
1answer
180 views
Is the news.reads action on the Open Graph available yet?
I'm having the same issue as described in this post:
How to get the built in news.reads action to publish to Facebook?
I noticed this question was posted way back in October. Is this feature still ...
7
votes
1answer
2k views
#_=_ added to URL by facebook
After connecting to my Rails app via Facebook I have #_=_ added on to my URL.
I tried specifying a redirect_uri as specified by FB but it didn't work.
Javascript workaround to remove the symbols ...
0
votes
1answer
357 views
Registered user log in for the first time using Facebook - Omniauth
I am following Ryan's instruction on Omniauth here.
However, there is a scenario that Ryan didn't cover:
User already have an account with us, but they signin with Facebook/Linkedin for the first ...
1
vote
1answer
444 views
Having Different Callback actions in OmniAuth
I am using Omniauth and Fb_graph gems in my app.
I wanted to perform two different actions on:
1) Sign up using facebook -> Using Omniauth I create an authentication and redirect to root_path
2) ...
2
votes
1answer
875 views
How to open facebook login form in pop up box while sign in with facebook
I am implementing sign in with Facebook in my web application. I am using omniauth gem for it. I want to open login to facebook form in new pop up. How can I do that? Please help.
8
votes
3answers
3k views
How to get Koala to play nicely with Omniauth?
I'm trying to get Koala to work with Omniauth. A User model logs in with Facebook using Omniauth and I want to use Koala as a client to pull the list of a user's friends that are using the app. I ...
0
votes
1answer
689 views
Pull friends uid using fb_graph
does anyone know how to pull a list of facebook friends uid using fb_graph? My current code is below but it does not work. I'm using devise and omniauth.
In my user controller
def profile
profile ...
2
votes
2answers
1k views
Do you need omniauth to work with koala?
I am a rails newbie and I was wondering if you have to have omniauth in order to work with koala. For example, if I followed this sites code, ...
1
vote
1answer
815 views
Omniauth facebook request friends uid
I am a rails newbie and I have followed Railscasts Episodes 235 and 236 regarding logging in with Omniauth. I have made it so a user can connect with Facebook and it grabs his email and his uid. ...
5
votes
1answer
3k views
Finding user's friends with Facebook Graph API
I'm trying to allow users that have connected their Facebook accounts to my rails app to find their Facebook friends that have already registered in the app, preferably in an index like format ...
3
votes
3answers
3k views
How can I specify the Facebook permissions (aka scope) OmniAuth asks for DYNAMICALLY?
This question is similar to How can I specifiy what access I need from my user's Facebook accounts when using OmniAuth? but has a caveat.
I'm using OmniAuth to authorize Facebook users on my website. ...
2
votes
1answer
538 views
What kind of data model should I use to store historical data?
I'm hacking around with RoR to test devise and omniauth integration.
I now have a model with a User and a FacebookUser and TwitterUser that belong to a User.
I can now store data from the Graph API ...
0
votes
1answer
102 views
How do I tell which authentication user is using in rails (OmniAuth)
Suppose user can login using either Facebook Account or OpenId. If user uses Facebook, I would like to put a button like publish on my homepage, else I will not put anything on it. How do I tell which ...
14
votes
1answer
6k views
rails omniauth facebook extended permission
I have read the omniauth oauth rdoc
@consumer = OAuth::Consumer.new(key, secret, {
:site => "http://term.ie",
:scheme => :header,
:http_method ...
4
votes
2answers
1k views
How can I specifiy what access I need from my user's Facebook accounts when using OmniAuth?
When you use OmniAuth to login to a web app through Facebook, these are the permissions the webapp has:
Access my basic information Includes name, profile picture, gender, networks, user ID, list of ...

