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.

Koala is a Ruby gem for integrating Facebook connectivity into Ruby, and Ruby on Rails applications.

learn more… | top users | synonyms

0
votes
0answers
8 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
1answer
20 views

Difference between Facebook graph and Koala rails

I am using devise as a way to use authentication for login and logout. However I am confused on how to post on a friends wall about my application. 1- If I use devise and Omniauth this allow me to ...
0
votes
1answer
14 views

Ruby & Koala: Why is there a discrepancy between Graph results & Facebook “in app” results?

I am using Koala to try and find all photos that I am tagged in, here is the key line of code that I am using: results_page = @grpah.get_connections("me", "photos", {:limit => 1000}) This ...
0
votes
0answers
35 views

Graph API POST to Add App to Page Tab

Very annoying problem here. I'm trying to programmatically add an app to a FB page as a tab. FB documentation says the following: "Make a POST call to the page API endpoint //tabs with app_id set ...
1
vote
0answers
40 views

Facebook Realtime API + Rails + POST not working

I'm subscribing to Facebook's Realtime API (using the Koala gem, etc.) to get data every time the pages that a user manages, changes... For some reason, I do not receive any POST data from Facebook, ...
0
votes
1answer
39 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
27 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 ...
1
vote
2answers
121 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 ...
1
vote
1answer
53 views

Getting list of facebook page GEM koala

I have a helper. Gets a list of the facebook fanpage. A few days ago to work, suddenly stopped. I stop after taking one fanpage. I get this error: type: OAuthException, code: 100, message: (#100) ...
0
votes
0answers
30 views

Issue retrieving friendlists from Facebook through Koala gem

I am working with a project started by someone else which interacts with Facebook through the Koala gem. For some odd reason it will allow me to create friend lists but when I retrieve them I get ...
0
votes
1answer
48 views

rails, koala, get list of users who installed facebook application

I have facebook application set up. I'm using koala gem to get some information about application. I know that I can get info about specific user who installed this application. @graph = ...
0
votes
1answer
32 views

bad URL request with Koala

There's a problem with my implementation of Koala for Rails which causes send dialogs to bug out because my site's URLs are considered invalid by Facebook. Here is what happens: 1) When I include a ...
1
vote
1answer
49 views

How to return Hash FQL Query from Ruby

I am new here and really new to Ruby so I will do my best to ask a good question. Basically I am trying to write an app that returns Facebook events a user has been invited to. Pretty simple. The ...
0
votes
0answers
22 views

Graph call Error When Getting User Page Information (Ruby on Rails)

I'm having some trouble making some graph calls with Koala. Graph calls: @graph_data = @api.get_object("me/books") @account_data = @api.get_connections("me","accounts") I have a ...
0
votes
1answer
33 views

Get more info from a list of objects using Koala to access Facebook Graph API on Rails

After instantiating a connection to the Graph API, I can do this: @graph.get_connections("me", "friends") This returns a list of friends containing their name and id. If I wanted more info from ...
0
votes
0answers
21 views

Where should I instantiate a Koala Facebook Graph API?

I'm using Koala to access the Facebook Graph API on my Rails web app Where should I instantiate this? @graph = Koala::Facebook::API.new(oauth_access_token) I could instantiate it every time I ...
2
votes
2answers
68 views

Render Facebook friends with 'registered' attribute

Basycally what I would like to do is to : Get the Facebook friends of a the current user Render this collection while differentiating user who are already registered with my app to other users by ...
0
votes
1answer
51 views

Replace array with values in string in Ruby within ( ), instead of [ ]

If you do something as follows: 1.9.3p194 :005 > array = [ 1, 2] => [1, 2] 1.9.3p194 :007 > puts "Array when output in \"\" is #{array}" Array when output in "" is [1, 2] => nil ...
0
votes
0answers
39 views

feed_targeting while posting to a fb page with koala gem

I'm having trouble setting the feed_targeting field for facebook page posts with the Koala gem. I'm sure my credentials/etc are set up correctly, since I've been successfully create a targeted post ...
0
votes
0answers
27 views

Interpolate with fql_query in Koala

I am using Koala to interact with Facebook Graph API and FQL. I would like to extract all friends of current user just once, and use this array in other queries. def facebook @facebook ||= ...
0
votes
2answers
70 views

Should I hide my facebook app_id and secret_key?

I am done creating my first facebook app in ruby on rails. In my controller I have somethign like @oauth = Koala::Facebook::OAuth.new(app_id,secret_id,callback_url) (Replaced with temp values) I ...
0
votes
1answer
130 views

Setup simple facebook oauth using koala ruby gem

Right now I am pulling facebook profile photo in my app using graph = Koala::Facebook::API.new profile_path = graph.get_picture("username",:type=>"large") ...
0
votes
0answers
67 views

testing Facebook login with Koala

I'm logging in successfully with Facebook via Koala. I now want to test in Rspec my controller behavior, and for this I would like to set up a live environment where I register a user via Facebook. ...
0
votes
0answers
30 views

RE: logging out of app with Koala

I implemented the simple Koala Facebook login/logout via redirect, just as a test. What I notice is the logout doesn't fully log me out, i.e. when I sign in again I go straight in without being asked ...
0
votes
2answers
111 views

Persistent server side Facebook authentication

I am trying to pull a public feed from the graph onto my site. I'm currently doing this with the Koala gem for Ruby on Rails. My problem is that I can not figure out if it is possible to silently ...
0
votes
0answers
47 views

Find my facebook groups using koala

I have no idea how to find this out. From the Graph API documentation, something like this should work graph = Koala::Facebook::GraphAPI.new(u.oauth_token) graph.get_object("me/groups") or ...
5
votes
1answer
142 views

Facebook tests users with user to user requests

I asked this question last week but only got 8 views. A part of the application I'm working on requires creating a ton of user-to-user requests and validating they all get processed correctly in the ...
0
votes
0answers
180 views

Getting list of friends with koala and fb api

Im trying to return the friend list with uid of an authenticated user. however I only get a partial return value, some part of the friends are just left out: graph = ...
0
votes
0answers
45 views

Check which in a list of pages the user liked with Graph API

I know how to find if the user liked a page or not with the graph api by "me/likes/<<page_id>>".. but is there a way to make 1 request to know which of the pages I liked? I would like ...
1
vote
0answers
96 views

list of Page Categories on facebook

I'm developing a facebook search and I would like to list all the page categories (is not relevant but I'm working with koala ruby gem): A search with type="page" has results like these: ...
0
votes
1answer
87 views

Facebook fql query provides just 100 latest status of a user

@graph = Koala::Facebook::API.new($access_token) The query below just return latest 100 statuses of certain user instead of all statuses @graph.fql_query("SELECT status_id, message FROM status ...
0
votes
1answer
36 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, ...
-1
votes
2answers
152 views

Fetching FB pages of a user using Koala

I have an FB account and i have created a fan page for my club and few other pages as well. I have an app in Ruby on Rails. I want to publish some feed on my club fan page. How can i do this? I have ...
0
votes
0answers
231 views

Publish to a friend wall on facebook, using koala, Ruby on Rails

I'm trying to publish to a person wall (friend of the user), on behalf of an user using the koala gem. I configured the publish_stream permission, and I can publish to the user wall, but when I try ...
0
votes
1answer
60 views

How to retrieve fb's user relationship status through koala gem?

I ve installed the gem koala and omniauth. In my user model class User < ActiveRecord::Base def self.from_omniauth(auth) where(auth.slice(:provider, :uid)).first_or_initialize.tap do |user| ...
0
votes
0answers
30 views

Graph API which permission for URL

I am reimplemnting some old server side code using ruby with gem Koala. The old app makes a call to : ...
0
votes
2answers
33 views

facebook API permissions

Just starting out with Facebook's API. I have a client that sends me the access_token after logging into to FB on iPhone. I am wondering where I would specify the permissions I need, for example to ...
1
vote
0answers
45 views

Detect if Facebook User is using HTTPS

I have a process that pulls all of the User's profile photos through a NET:HTTP connection. The problem is that I don't know if a user's account is using HTTP or HTTPS- the process works fine if I ...
1
vote
2answers
116 views

Posting photo on Facebook with tags using Koala

I'm trying to post a photo using Koela using the following code but its not taging the users @graph.put_picture(pic_url,{:message => msg,:tags => [{:id => "xxxxxxx"} ,{:id=>"xxxxxxx"}]}) ...
0
votes
2answers
143 views

undefined method `fql_query' for nil:NilClass

With the koala gem I am trying to count checkins for a page. I am using rails. In my user.rb I have a method for getting a new connection to the Facebook graph: class User < ActiveRecord::Base ...
0
votes
0answers
31 views

Rail3 compare Facebook friendlist with user list in database

I manage to retrieve Facebook friendlist and display it by using Koala gem: In controller: @api = Koala::Facebook::API.new(access_token) @friends = @api.get_connections("me", "friends") In view: ...
0
votes
0answers
131 views

Get facebook insights any public pages

I want to collect insights of popular pages like cocacola, redbull, formula1fanpage etc. I tried with graph API but gives limited metrics(page_fans_country and page_storytellers_by_country). As I ...
-1
votes
1answer
206 views

Get Facebook friends phone number

Currently, im using ruby gem Koala and can get a list of user friends, but i can't find any way to fetch phone numbers from friend list. Is this even possible? Didn't find any information about this ...
-2
votes
1answer
95 views

koala batch request implmentation for the list of api calls

I want to find all the feeds with comments an also the profile image of the the user who commented on the posts. I found that it can be done through batch request. Now i am doing like this which fires ...
1
vote
0answers
130 views

Koala: Facebook fresh OAuth code invalid or expired

everybody. I'm working with a simple Facebook authentication system on my platform (with Rails and Koala) and it's almost working as expected. But there's this one critical bug that's driving me nuts. ...
2
votes
1answer
160 views

Friends checkins with facebook graph api and rails - APIError

I am trying to get a users friends checkins, I am using omniauth and koala gem. When a user gets saved this method hits: def add_friends friends_data = facebook.get_connections("me", "friends", ...
0
votes
0answers
115 views

Facebook post to wall error when link parameter is included

When I try to post to my own wall(same for my friends' wall) in Graph API Explorer(also from the app) I got following error: { "error": { "message": "(#1) An error occured while creating the ...
0
votes
0answers
8 views

cross-request storage - Koala Facebook Gem [duplicate]

Possible Duplicate: check if Facebook auth code expired rails With the new Facebook release, cookie requests can only be done once. Does anyone have any good suggestions for cross-request ...
1
vote
0answers
406 views

check if Facebook auth code expired rails

I'm trying to comply with the new Dec. 5th Facebook release, and store access tokens. I'm using the Koala gem in Rails for the Facebook API. I ge the following error if the user has logged out of ...
0
votes
1answer
132 views

How Can i share a post using the post id

I am using Koala gem and in my UI i have an share link. How can i share the posts using the post id. Can it be done like this. @facebook = FacebookToken.first @graph = ...

1 2 3 4