Skip to main content
Filter by
Sorted by
Tagged with
2 votes
5 answers
7k views

I am trying to upgrade my iPhone app to use the new facebook graph api. One thing I cannot find is how to find out if the current user connected from my app to facebook is a fan of my facebook page - (...
Marin Todorov's user avatar
0 votes
1 answer
9k views

The Facebook Graph API lists a 'link' parameter in its documentation, which is the user's profile url. Mine is http://www.facebook.com/adambossy. This is not listed as one of the available Extended ...
thebossman's user avatar
  • 4,718
1 vote
1 answer
2k views

Background: I have successfully used the Facebook Graph API to publish activity on a particular web site to a Facebook fan page's stream (wall). To do this I had to create a Facebook application for ...
Mike Silverstein's user avatar
3 votes
1 answer
6k views

Using the new API, is it possible to get the insights (analytics) data from a page that you are an admin of? I can successfully get the data from an app I own, but its not clear how to do this for a ...
wesbos's user avatar
  • 26.4k
1 vote
5 answers
3k views

I've been working at this for a few hours, but the poor documentation is of no help. All I want to do is grab the data that exists at https://graph.facebook.com/cocacola/ as an example, and I cant ...
wesbos's user avatar
  • 26.4k
8 votes
5 answers
5k views

We're having some trouble getting our like button to work. It seemed to work last week but suddenly it's stopped working. Basically when clicking "Like", we get an error saying: You failed to ...
Ross Hale's user avatar
0 votes
1 answer
2k views

I would like to know whether it is possible to post "topics for Discussion" on Facebook Groups by using either the old Rest API or Graph API? I somehow was unable to find any function within the API ...
Gaurav's user avatar
  • 190
1 vote
2 answers
4k views

I'm a little confused trying to adapt to the new facebook Graph API. Whereas before I would have used events.get, I'm not entirely sure what to use now! I can't seem to get a list of a group's events ...
Sam Martin's user avatar
  • 1,238
2 votes
2 answers
4k views

I have really simple few lines of Facebook app, using the new Facebook API: <pre> <?php require 'facebook.php'; // Create our Application instance. $facebook = new Facebook(array( '...
nonopolarity's user avatar
1 vote
2 answers
4k views

I just read the new User fql table fields at http://developers.facebook.com/docs/reference/fql/user As I can see a lot of the fields have been deprecated such as work_history or books and movies. It ...
PanosJee's user avatar
  • 3,866
87 votes
8 answers
66k views

I have an application that uses the old REST API call Friends.getAppUsers to get the list of friends for the current user that have authorized my application. I have read the documentation, how do I ...
Richard's user avatar
  • 28.9k
12 votes
7 answers
73k views

I have created an app, and now i want to post a message on one of my friends wall with use of the new Graph API. Is this do-able? I am already using oAuth and the Graph-api to get a list of all my ...
qualbeen's user avatar
  • 1,582
2 votes
1 answer
1k views

I need to know if it's possible to make it so authorized users can upload photos to a fan page of a company (to the wall) using the graph API. Also, is it possible to become like (become a fan) of a ...
markstewie's user avatar
  • 9,747
4 votes
3 answers
5k views

What's the difference between accessing user data with the Facebook Graph API (http://graph.facebook.com/btaylor) and using the Graph API to make a FQL query of the same user (https://api.facebook.com/...
jwynveen's user avatar
  • 1,291
1 vote
1 answer
3k views

I am trying to write an application that uses facebook user's events as a possible data source and unfortunately I can log in and get an access token which I can use to get my picture and UID but when ...
Ritec's user avatar
  • 11
9 votes
5 answers
3k views

For a middleware system with internet (which works inside a set-top box) I want to develop a primitive Facebook interface where users can type their user-names and password, showing their latest ...
Hellnar's user avatar
  • 65.4k
4 votes
6 answers
10k views

I'm developing a new Facebook Canvas application within an iFrame and trying to authorize users. The new OAuth api recommends I do a redirect to the following to authorize a user in my app: https://...
Rick's user avatar
  • 43
1 vote
1 answer
167 views

i am writing an FBML app on facebook hosted in GAE. Facebook will talk to your hosted app only vai POST (im sure this is the cause, but please do correct me if i'm wrong). So im faced with the issue ...
user259349's user avatar
2 votes
1 answer
3k views

I need to access Facebook from a J2EE-App (serverside). I first had a look at this project: http://code.google.com/p/facebook-java-api/ , but as I need to create Facebook-Events and invite people this ...
Eric's user avatar
  • 23
0 votes
1 answer
881 views

I am trying to fetch user events from facebook but I am having some problem witht he request. I can access their profile image and their UID but for some reason when I try to access the events I get ...
Ritec's user avatar
  • 11
2 votes
2 answers
928 views

I'm in the final stages of converting our site over to Graph API from the Rest API. The last piece I'm missing is the old "revokeApplication" call used for when a user chooses to "remove connection" ...
jmccartie's user avatar
  • 4,976
40 votes
3 answers
87k views

In Facebook how can I post a message onto a user's wall saying "I scored 8/10 on objects game" then a URL? I really don't want to have to use the full API, as I don't want to handle user login ...
Glycerine's user avatar
  • 7,387
12 votes
4 answers
25k views

The old Facebook API provided the user sex/gender as part of the default user data. Apparently the new Graph API does not provide that information, even though the documentation says that it does. I'...
Mark's user avatar
  • 200
32 votes
5 answers
82k views

I'm looking without any success for a way to execute a FQL(facebook query language) query with the new Open Graph API. Does anyone know how I can do this? Found the answer here with this excellent ...
user63898's user avatar
  • 31.1k
0 votes
1 answer
2k views

I am following the steps to do the authorization as described here, but I am not redirected to my callback url. I get the following five steps after calling the first one: https://graph.facebook.com/...
Pentium10's user avatar
  • 209k
0 votes
1 answer
1k views

I am working on facebook iframe application in asp.net c# I succeed to retrive the access_token. Now I want to pull for example the user likes but I don't have the user id https://graph.facebook....
achmed's user avatar
  • 1
5 votes
5 answers
16k views

I am using the PHP library for the Graph API (http://github.com/facebook/php-sdk) but am a bit confused about how it is all working (or not). I just want to authenticate the user and get the user ID ...
user avatar
4 votes
3 answers
7k views

Is there an library for the iPhone using the new Facebook Graph API yet?
Tim A's user avatar
  • 43
5 votes
4 answers
13k views

I am trying to create an event using Facebooks api. (From a django app) Has anyone created an event with the new graph api?
kkubasik's user avatar
  • 3,732
90 votes
9 answers
142k views

I need to get via Facebook connect user's info and send a private message to all of his friends. Is it possible?
yspro's user avatar
  • 1,658
1 vote
1 answer
2k views

Is it not possible to move between pages in the canvas on facebook? I'm trying to create a app where i have two pages that the users can switch between. The first page works fine, but when i click a ...
Martin's user avatar
  • 5,317
2 votes
3 answers
5k views

I'm used to working with Twitter, where friend/follower totals are available in a simple XML request. My goal is a simple "enter your username/user id, and display your friends count". Is there ...
mrpatg's user avatar
  • 10.1k
6 votes
1 answer
3k views

I would like to use pictures from facebook if Gravatar does not have an image for the user on file. Can I do this through facebooks API?
Luke101's user avatar
  • 65.7k
44 votes
9 answers
75k views

I just created a facebook page. I also have a separate facebook APP. How can I add a tab containing my facebook APP to the facebook page? I've set the app to allow install on pages, and added a tab ...
teepusink's user avatar
  • 29.1k
25 votes
6 answers
80k views

I've recently started looking into the Facebook API and am trying to work out how to retrieve the list of friends of another user (in this case the user is someone I'm friends with). So far I've ...
Grant's user avatar
  • 261

1
698 699 700 701
702