Tagged Questions
-3
votes
0answers
24 views
I am looking to build a site (on Rails) where my clients can login and see their stats (Insights). Where do I start? [closed]
I am starting a project with the aim of building a social media dashboard which my clients can login and see all their social media stats on one page.
One of the requirement is that it needs to be on ...
0
votes
1answer
17 views
Facebook Connect - simply add a user's Facebook profile url into database via Rails
I'm coding a simple app which should use some FB connect mechanics but I don't want too much overhead here so maybe you can share your thoughts/experience on my task:
merchants can post products ...
0
votes
1answer
11 views
Omniauth-facebook is hitting callback twice and failing
This problem has puzzled me for a few days, and I think I've finally narrowed it down. I'm using the Facebook JS SDK to do client side authentication:
FB.login(function(response) {
if ...
1
vote
1answer
25 views
Setting up host file to redirect foo.com to localhost:3000
I'm trying to test out some Facebook features on my rails application and I would like to use a host file to redirect my foo.com to localhost:3000 when developing.
Here's what I've added to my ...
0
votes
0answers
46 views
Custom link in an open graph story
I'm building a facebook app which uses open graph to publish stories. I can successfully publish the stories but what I want to do is to customize the link in the story(detailed in the given image).
...
-2
votes
2answers
55 views
Social networking code for beginners - Any projects available? [closed]
Are there any open source projects available that show how to create a social network?
I would like to be able to look at the code for any open-source social networks and modify it as needed (in ...
0
votes
0answers
35 views
fb.Login() window closes right away and returns 'not_authorized'
I have FB login enabled on my website with the FB JDK. When I use it, it works perfectly: the dialog window opens, I authorize, and the authResponse is as expected. When another user uses it (who has ...
0
votes
0answers
14 views
Get Password with Omniauth Signup
Currently I got a Rails app with devise + omniauth. Everything is working fine. A nice-to-have for me would be to get the encrypted password from the omniauth provider.
Is this possible to do?
0
votes
1answer
31 views
How to fetch albums photos from facebook using fb_graph gem?
I created a photo album on facebook named 'exemple'.
Is it possible to fetch all the pictures links of The album knowing only the name of the album?
How do I proceed with fb-graph gem?
1
vote
0answers
29 views
Facebook oauth dialog POST method for return uri
Short version
Is there a way to have facebook POST back to your return url from their oauth dialog after logging in?
With background story
I am developing a Rails application in which a user can ...
0
votes
1answer
54 views
Rails using Facebook Like and Twitter Follow widgets with layout page with jQuery Mobile
I have been battling to add the two widgets to my layout page (i.e. application.html.haml).
The first time the page loads they show up, then if I navigate to another page they don't show, so I ...
0
votes
0answers
22 views
[Ruby on Rails]Facebook connect failed with custom-domain on Heroku, but works with Heroku native subdomain
My problem :
I developed an application with FB-connect using Ruby On Rails on Heroku.
Everything is working well until we face this problem :
Everytime user clicks "Sign In with Facebook" , it ...
0
votes
0answers
35 views
Facebook authentication not working in Ruby on Rails
In my facebook app under site url I have put - http://www.mydomainname.com/users/auth/facebook/callback
I have put all the facebook credentials properly in config/initalizers/devise.rb too
The user ...
1
vote
0answers
286 views
heroku facebook app run locally throws blocked frame error on fb login
I've followed the steps in the Heroku tutorial for node.js as well as ruby and run into the same issue. Am able setup the basic applicatin and run it locally using 127.0.0.01:5000
However, when the ...
0
votes
0answers
12 views
“See full review” link in the review text for video.rates does not show
Recently I used rottentomatoes facebook app to review movies. When I review a movie, rottent tomatoes creates the following story.
If you look closely there is a "see full review" link at the end ...
-1
votes
0answers
22 views
Can we store a custom value for a facebook page tab so that we can get that value through app_data or the signed_request?
I have facebook page tab app. On hitting this app from a page it will send a signed request to my landing page. I was wondering if it possible to set some custom data (say company name) while adding ...
0
votes
1answer
39 views
How can I redirect to current page after a successful Facebook login
I am implementing a Facebook login in my Rails 3 application. I have gotten it to work but it redirects to the "Site URL" I specified in my Facebook application. I would like it to redirect to the ...
0
votes
0answers
26 views
I keep getting “Not found. Authentication passthru” for Facebook connect login with Devise - Need debug advice
I've seen a couple people ask a similar question, but I really need advice on how to debug this issue. I'm trying to setup facebook connect using Devise using the article here: ...
0
votes
0answers
7 views
Finding a user's friends' favorite books andauthors with Facebook API
I am developing a rails app with koala. Is there a simple way to return an list of a user's friend's favorite books or authors through the gem or the API?
1
vote
1answer
59 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
1answer
62 views
Server-side Facebook app invites (with Rails and Koala)
When someone authorizes our app they fill out a form which includes some information and a custom friend selector. Form is submitted to the server and that's when I'd like to send out the app invites ...
0
votes
0answers
40 views
Facebook / How to identify the user to log in without following the whole Oauth workflow
Let's assume a website allowing its users to be logged through Facebook (with OAuth2 so) using the server-side solution (not the javascript SDK).
Of course, redoing the process of authorization each ...
2
votes
0answers
79 views
FbGraph OAuthException Invalid OAuth access token
I am using FbGraph in my Ruby on Rails app along with Omniauth. I am using the server-side method to get the long-term (60 day) access token for the user and then storing it in a session variable. ...
0
votes
1answer
42 views
Phonegap Facebook Local Storage omni-auth facebook
I have a question regarding the authentication process with mobile users. I am currently developing a mobile app with phonegap and jquery mobile.
I have setup a Ruby on Rails backend with the ...
1
vote
1answer
32 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 ...
1
vote
0answers
57 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
0answers
15 views
Facebook Opengraph: handling continuous quantity objects like “burning calories” or “earning points”
I'm currently working on a Rails project for a retail client who is planning to publish points earned from their loyalty scheme to FB using OpenGraph. I've started to investigate this now and have ...
0
votes
1answer
103 views
What is the best way to store a user's Facebook friends list in my database?
Overview
I'm creating a Ruby on Rails website which uses Facebook to login.
For each user I have a database entry which stores their Facebook User ID along with other basic information.
I'm also ...
0
votes
1answer
44 views
Facebook like button returns incorrect query params
Hi guys I've searched through the questions and haven't been able to find an answer for this. I've hit a dead end and my companies analytics team is starting to worry about the tracking data they ...
1
vote
1answer
203 views
Fix Rails oauth facebook x-frame-options sameorigin error
I can't for the life of me get my Facebook canvas app to display. Chrome console displays this error and nothing shows up inside the iframe - it's blank:
Refused to display 'http://mysite.dev/' in ...
0
votes
1answer
33 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 ...
0
votes
0answers
22 views
open graph truncates my url
I am building a simple "x trusted y" action for Facebook OPen Graph/
I have the feeling that open graph is truncating the URL I pass to it - and therefore it yields a bad user experience because when ...
0
votes
0answers
46 views
Ruby on Rails app using facebook send button showing controls that lay behind modal
I'm having trouble with the css of my page in order for my facebook send button's modal to show on top of everything. However, if the cursor is over the modal, it displays great. It is when I move ...
0
votes
0answers
81 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
1answer
69 views
multiple Facebook Send Buttons and titles not working + Ruby on Rails
I have a list of partials that each include a facebook send button from addthis. The issue I'm running into is this: the facebook send button allows you to pass in a parameter for the url you want to ...
4
votes
1answer
92 views
Facebook API Publish feeds in Group
I am posting some feeds on my pages thru facebook API which are published normally.
but those posts are appears on my fans feeds, (may be irritate them if these are too much in numbers, you can ...
0
votes
0answers
68 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
33 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
23 views
how to get app listed in movies section on facebook
I am working on a movie detail sharing application integrated with Facebook.
I am posting the post with default video object properties but still the app does not show in the Films section.
When I ...
2
votes
0answers
53 views
Facebook's api- wall updates(photo) with hover state
I'm not sure if this is the best place to ask this question but how does pict.com post a photo that has an hover effect on the user's facebook feed? I've been researching for 2 days now, i know ...
0
votes
1answer
65 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 ...
0
votes
1answer
61 views
Facbook url scraper [closed]
I'm trying to implement facebook like url scraper. The one in which you enter the website url and facebook fetches videos or images, title, description form that page. Facebook uses the og:meta tags ...
0
votes
0answers
12 views
address starts invalid then gets validated in debugger
I use the send message dialog feature and include a link back to my app, such as:
http://curiousbear.herokuapp.com/restaurants/482
Now some of those links register as invalid(error 100), and so I ...
0
votes
1answer
57 views
How do I post an image using Koala gem?
I'm using the Koala gem to post images to the Facebook wall with the put_object method. The problem I'm having is that the images show up as thumbnails on the wall (with a caption) instead of the ...
0
votes
0answers
42 views
How to detect if response is positive or negative on Facebook add friends dialog callback?
I'm adding Facebook's add friend dialog to a User show page in a rails app.
I've added the following code to the page
<%= link_to "Friend on Facebook", ...
0
votes
0answers
35 views
Facebook Koala (rails) : fetch a group and its members using a single batch request
I'm new to the facebook graph API, and I can't find a way to achieve this.
All my groups have less than 15 users (splitting requests is not required)
I'm currently using a loop which calls the API ...
0
votes
1answer
69 views
Facebook Share and Share on Twitter in Rails
On my landing page I want users to be able to Share on Facebook and Share on Twitter that page with a particular message. I would like to be able to know when they have actually post it on Facebook ...
10
votes
1answer
579 views
(#5) Unauthorized source IP address Error on Heroku Rails APP
My Heroku app (RoR) started to throw this error when someone tried to sign_in via facebook.
(#5) Unauthorized source IP address
0
votes
0answers
18 views
How to recieve information from an user when he tries to add my facebook app as a page tab?
I am creating a new facebook page tab app. I need certain information to be filled in by the admin of the page who is adding the tab. How can i achieve this?
Moreover i don't know if the page id will ...
1
vote
2answers
179 views
Koala Gem Album photos in rails
I'm trying to display facebook album photos on my rails 3.12 app via the Koala gem by first accessing the users albums. I know how get the album:
u.facebook.get_connections('me', 'albums')
but ...

