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.

Ruby on Rails version 3.2.0 released at January 20, 2012. Use this tag for issues related to development in Ruby on Rails version 3.2.0.

learn more… | top users | synonyms

0
votes
1answer
22 views

ROR + Fetch latest or last two comments for every Post

In my application, I have to fetch last/latest two comments from Comment model for Post model just like Facebook. For every Post may be there is comment or not. For example :- Post 1 having 10 ...
1
vote
0answers
45 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
23 views

Rails : facebook open graph

I am creating first story in facebook graph on my rails app. I have created a story for product upload. SO when user creates products, story gets published on his timeline saying "User created a new ...
0
votes
3answers
88 views

Facebook Graph API: Get user city (location)

I have currently implemented facebook login and taking access of user's location. Like this: user.profile.city = auth.info.location I need only city of user, but location gives city and state. ...
0
votes
1answer
145 views

Rails: Could not authenticate you from Facebook because “Invalid credentials”

I integrated omniauth-facebook using https://github.com/plataformatec/devise/wiki/OmniAuth%3a-Overview. But I am getting error of : Could not authenticate you from Facebook because "Invalid ...
0
votes
0answers
60 views

Facebook share not working in mobile browser

I am using below API for Facebook share, It's working in web browser but not in mobile browser. ...
0
votes
1answer
88 views

Hartl Ch. 8 Rails Tutorial Remember_Token Test Failure

This is not a dup question--I have run rake db:test:prepare. Hartl's Rails Tutorial on adding remember_token. Error when I run authentication_pages_spec.rb: 1) User Failure/Error: it { ...
0
votes
0answers
45 views

Facebook Permissions - how to add extended permissions on a per-user basis after sign in

I have a rails app that uses Facebook login with the very basic permissions: email,user_photos,user_birthday. It appears that asking users for extended permissions like publish_stream really drops the ...
0
votes
1answer
64 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' ...
2
votes
1answer
178 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 ...
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
0answers
207 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
1answer
57 views

Rails - what is the correct syntax for adding current url to Facebook comments div href?

I've tried every variation I can think of to add the current url path to the href in the facebook comments div. Why doesn't this work? <div class="fb-comments" data-href="<%= ...
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 ...
0
votes
2answers
1k views

Invalid redirect_uri: Given URL is not allowed by the Application configuration in rails

I have already looked all the related answer in stackoverflow for this question but still couldn't find a working solution. Twitter and linkedin is working properly but for facebook I get this error, ...
-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
244 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
423 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 ...
-1
votes
1answer
100 views

How can i check if the user is logged out in facebook ( Fb Sdk )

I am currently develop a facebook application. now i implemened a sign_in functionallity with the facebook sdk. jQuery -> $('body').prepend('<div id="fb-root"></div>') $.ajax ...
2
votes
1answer
1k views

Rails + omniauth + facebook - csrf detected

I'm working on logging in a site via existing facebook account. So I registered a facebook application and stored api and secret in development.rb and production.rb files. Then I used ...
0
votes
1answer
360 views

How do I display another websites meta data such as title and logo on my website?

How do I grab meta data from other websites and display on mine in Ruby on Rails? I asked this question before and thought I found the solution but it doesn't seem like I have. When using FB or ...
0
votes
1answer
66 views

Facebooker2 returning users UID but not name

I am just using the standard Facebooker2 setup. <%= fb_connect_async_js %> <% if current_facebook_user %> <%= "Hello #{fb_name(current_facebook_user, ...
0
votes
1answer
923 views

Facebook doesn't see my opengraph meta tags

I've build a community using rails 3.2, ruby 1.9.3, mongoid and it's all hosted on heroku on a cedar stack - www.Meer.li. The problem I have now, is that facebook doesn't register my opengraph meta ...
0
votes
1answer
396 views

Rails 3.2.2 Facebook app using Devise and Omniauth redirecting out of iframe on user permissions confirmation

Heroku hosted Rails 3.2.2 app using Devise and Omniauth. I'm currently getting the facebook userid via post when opening the app. If the user exists, I automatically log them in and it all works ...