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.

A full-stack Facebook Graph API wrapper in Ruby

learn more… | top users | synonyms

0
votes
0answers
7 views

How to post a story in facebook using ruby (fb_graph)?

I use fb_graph to create a post in facebook account. It works fine. me = FbGraph::User.me(session[:fb_token]) me.feed!( :message => 'This is test message', :link => 'http://site.com', :name ...
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. ...
3
votes
2answers
554 views

Facebook wall post error: OAuthException :: (#1500) The url you supplied is invalid

I have a web-based news app that runs on Heroku. When users post a comment to a news story on my app, my app forwards the comment to the user's facebook wall using fb_graph. Everything worked ...
0
votes
0answers
10 views

Fb_Graph, Is it possible to update privacy settings of a post / album that is already posted?

I know this has been asked before, but it's been 2 years. What I need to do is update a photo album via Fb_graph sto that it is visible to some extra users. When I tried to POST a new album with the ...
1
vote
2answers
408 views

facebook Security Warning while user has enabled secure login - iPhone

I am working on an application which uses FB login. For login from faceBook I am using FBGraph and it works fine if users have disabled secure login in their account, but if user enables the secure ...
2
votes
0answers
138 views

fb security warning while trying to login with fbgraph api

while trying to login with fb, using graph API, a web page appear showing message. SECURITY WARNING:Please treat the URL above as you would your password and do not share it with anyone. in ios fb ...
0
votes
1answer
110 views

Multipule posts in loop with FbGraph gives: OAuthException :: (#1) An error occured while creating the share

I'm having an issue posting posts to a page, and only get the helpful error: OAuthException :: (#1) An error occured while creating the share The first 20 or so posts worked great, then it started to ...
0
votes
1answer
350 views

Rails OAuthException :: An active access token must be used to query information about the current user

Iam using fb_graph in my rails application to get and set the access token if it authenticates with facebook. I have an Invites controller where a user will have to authenticate to invite friends. My ...
0
votes
0answers
78 views

rails facebook app logout issue

I am newbie. I am using fb_graph gem in my Facebook app but the problem is when I click logout from the app it logs out only from the app not from facebook. I want full logout, meaning from Facebook ...
1
vote
0answers
105 views

Avoid user login for facebook feed dialog using FB - JS SDK

I have a Rails 3.2 app that uses omniauth gem to authenticate users via Facebook. Once the user is authenticated, i save his FB user_id and access_token that is generated. I used fb_graph gem to ...
2
votes
1answer
299 views

Sharing things in facebook using fb_graph gem

I'm trying to share in facebook while creating the content using fb_graph(2.6.0) gem, i'm getting following errors while trying : app = FbGraph::Application.new(APP_ID, :secret => APP_SECRET) ...
-1
votes
1answer
120 views

Rails: Facebook API - how to get list of groups, where I am included? [duplicate]

I am using FbGraph for getting information about pages I like, friends and so on, but I don't see there an option to get a list of user's groups. Is there any way to retrieve it? Thanks
0
votes
0answers
89 views

Rails + FbGraph - cannot retrieve access_token

This is my controller for authentication through Facebook: class UserOauthController < ApplicationController def create @client = self.auth(facebook_login_path).client ...
0
votes
1answer
168 views

Getting #<FbGraph::InvalidRequest: OAuthException :: Unknown path components:

I'm using the FbGraph gem with Rails. Every time I try to publish an action, I get this error: [OpenGraph] Publishing publish #<GroupComment> (valid user token) [OpenGraph] ...
0
votes
1answer
301 views

Error while posting to feed: “The user hasn't authorized the application to perform this action”

I'm getting error while posting a feed on my facebook from url: (#200) The user hasn't authorized the application to perform this action I'm using ...
0
votes
0answers
74 views

FbGraph: how to remove permissions for the application

I want to remove my application from the users applications on fb by removing the permissions from it, until now I have found in the graph documentation a call for doing it: ...
-1
votes
1answer
97 views

Fetch all the user devices from facebook using FbGraph

I want to get all the user devices from facebook, i am user FbGraph for getting user details. I have fetched the movies, music television, education and some other information successfully, but i am ...
0
votes
1answer
88 views

how to get the access token expiration time in fb_graph?

I know how to get the access token. access_token = @client.authorization.process_callback(params[:code], :redirect_uri => fb_redirect_url) Can anybody suggest me how can I get expiration time ...
0
votes
2answers
77 views

how get data from installed facebook app on iphone? [closed]

I want to get data like user information from installed Facebook app (I dont need to login screen again on app, like it does in FBGraph or ShareKit) on iPhone. I should be able to get data directly ...
0
votes
1answer
33 views

Accessing huge volumes of data from Facebook

So I am working on a Rails application, and the person I am designing it for has what seem like extremely hefty data volume requirements. They want to gather ALL posts by a user that logs into the ...
0
votes
0answers
112 views

Terminating Facebook Session for node.js using fbgraph

I am creating an app, which uses facebook authorization. I am using the fbgraph api, suggested on the facebook api pages. However, I am currently unable to figure out a way to end the session for ...
0
votes
1answer
494 views

Search FB User with Picture

I want to search FB Users with a profile picture. I have a picture and i want to compare it and find people matching with their profile picture. i have tried FBGraphapi search section but it has ...
1
vote
1answer
131 views

Facebook Multiple tagging on Photo ios

I am using FB graph api to tag multiple friends. I am able to tag only one friend. But not getting success with multiple friends. For single user:- NSString *photoID=@"23451245"; [FB_Graph ...
0
votes
1answer
202 views

How to manage the Blank White screen while loading FBGraph login Webview in iPhone SDK

I am implementing FBgraph API after log in screen it shows white screen with label "Success", at that time i need Activity indicator . please give me solution.
0
votes
0answers
129 views

fb_graph gem => auto login wisth FB Cookies only work after a page refresh

I just want my user autolog in my application if he's already log-in facebook. I'm trying this: In application_controller.rb before_filter :reconnect_fb def reconnect_fb begin auth = ...
0
votes
1answer
261 views

Can't install fbgraph module in play framework

So I am trying to install the fbgraph module to test it out in play framework. According to the documentation (http://www.playframework.org/modules/fbgraph-0.3/home), I should download the fb graph ...
0
votes
0answers
89 views

Facebook - post to page wall when user is not logged in (via FbGraph)

I use FbGraph gem and this part of code: page = FbGraph::Page.new(ID_OF_MY_PAGE) feed = page.feed!( :access_token => access_token, :subject => 'testing', :message => 'Hey, I\'m testing ...
0
votes
2answers
585 views

Can not get the gender of the user: property 'gender' not found on object of type 'NSDictionary<FBGraphUser> *'

This is my code to get the whole dictionary representing the user Graph: if (FBSession.activeSession.isOpen) { [[FBRequest requestForMe] startWithCompletionHandler: ...
0
votes
1answer
423 views

Rails 3 + fb_graph how to get access token to post to my own FB page

I am using Rails 3 + fb_graph to post to my own Facebook page. I have code that works, but it uses an access token that only works for a couple of hours. And it is very annoying to refresh this access ...
0
votes
1answer
54 views

undefined method `og_action!' for facebook open graph (ROR)

I am developing small web application in which I want to implement facebook open graph actions. so my code looks like begin @auth_fb = user_token @app = ENV['FB_KEY'] me = ...
2
votes
0answers
190 views

Facebook white screen issue loading fbGraph API in webView?

I am facing a strange issue: I am using the fbGraph API to get Facebook related data, when I load Facebook to log in, in my webView it shows blank white screen. Has anyone had this issue before? Does ...
1
vote
1answer
74 views

redirect to facebook canvas using fb_graph

I have an application built with rails gem fb_graph, everything's fine until the moment I integrated it with facebook canvas, at the first try when the app asks for the permissions and the user ...
0
votes
1answer
185 views

iOS - How can I “Like/Share” any Photos of particular Page from my App with FBGraph API?

I am using FBGraph API for integrating FaceBook to my iOS app, I want to "Like/Share" Photos from particular page's Photo Album or from friend's Photos Album. Is it possible? Can any one help me for ...
4
votes
4answers
1k views

How do I invite friends from facebook using fb_graph?

Basically I want to display a list of friends (with pictures and names) and invite them to my app I'm creating in rails with the fb_graph gem. The link shows the flow of how this would work, basically ...
0
votes
2answers
250 views

sharing image using FBGraph API is not working

I have used the below code to share an image on fb wall: NSData *imageData = UIImageJPEGRepresentation(self.selectedImage, 10); NSMutableDictionary* variables = [NSMutableDictionary ...
0
votes
1answer
149 views

send facebook application request to friends as a notification or posting on friends wall

I have developed a facebook app using fbgraph, rails 3 and facebook graph api. I want to to include few of my facebook friends in the game(app) and when I finish playing the game, I want to send ...
0
votes
0answers
153 views

Trying to get a feed of status updates using FbGraph for Ruby

Am trying to get a feed of my Facebook status updates using FbGraph for Ruby. I'm able to hook up and retrieve data perfectly using the fetch call, but when I grab the feed, it returns only my ...
1
vote
3answers
830 views

Facebook Open Graph not showing on timeline

I'm using FB Open Graph in my application. It's not fully working. When I post a object it appears in the user's recent activity; however, it doesn't appear on their timeline. The metadata has no ...
0
votes
1answer
250 views

How do I get facebook like post to display image and description

I am using the facebook like button on a facebook app page. When a user likes a page only the url is posted to their wall. I have tried the following <meta property="og:title" content="my ...
0
votes
0answers
243 views

Add an Album to Page using API (ruby, fb_graph)

Ok, what I want is to create a new album for an subpage of my account. I think, it is almost the same from Add an Album to Page using API (php). I have one main page with a lot of subpages assigned. ...
1
vote
2answers
442 views

Facebook Graph Api to read recommendations

While I can access several data using fbgraph api, I couldn't find way to read the "recommendations" data. For example: For the facebook page www.facebook.com/cozycaterers , its recommendation ...
0
votes
1answer
351 views

fb_graph upload photo from base64 encoded string

I'm receiving attachments from postmarkapp (described here: http://developer.postmarkapp.com/developer-inbound-parse.html#attachments). I want to upload those photos to facebook using fb_graph ...
0
votes
1answer
246 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
46 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
2answers
296 views

How to cache Facebook friends list using iPhone application

I am developing iPhone application which contains the facebook connect as part of it. I am using third party API FBGraph to retrieve the Facebook friends list. Currently my problem is that, when ...
0
votes
2answers
471 views

Posting a link to facebook wall fails on external links

I'm using the fb_graph gem in a Rails 3.1 app. I'd like for users to be able to post links to their Facebook wall from my site. Here's my code that posts the link: me = FbGraph::User.me fb_token ...
0
votes
1answer
991 views

Accessing data using facebook graph API in fb_graph [rails]

I encounter something annoying while playing around with the facebook graph API. I'm using fb_graph which is a ruby wrapper for the facebook sdk. I'm not sure if this issue I encounter is a limitation ...
1
vote
2answers
220 views

Can we grant access to an app to post something on a page in facebook?

The scenario is I want to post some details on a facebook page created by me from my other app. So want to know how can we give access to app through access token means how can we get the access token ...
0
votes
1answer
291 views

How does web session work in this rails project?

Introduction: I am building a facebook app which auto wishes happy birthday. I am building it in Rails and using a ruby API wrapper called fb_graph. The creator of fb_graph has graciously provided a ...
0
votes
1answer
358 views

error with fb graph post image

it will be just like repeated question on first look but it is not please read it till the end. I can able to post images using the fb graph api. 1) I am able to post photos but it takes around 2 to ...

1 2