Tagged Questions

The FQL object enables running FQL queries using the Graph API. Facebook Query Language, or FQL, enables you to use a SQL-style interface to query the data exposed by the Graph API. It provides for some advanced features not available in the Graph API, including batching multiple queries into a single call. From official document:http://developers.facebook.com/docs/reference/fql/

learn more… | top users | synonyms

19
votes
5answers
6k views

Get Facebook “Like” count for every page on my domain

I have integrated the Facebook "Like" button into a lot of pages in my site. I want to display the most "Liked" pages on my site in a list, but I can't figure out how to get that data from Facebook ...
14
votes
3answers
31k views

How can I execute a FQL query with Facebook Graph API

I'm looking without any success for a way to execute a SQL query with the new Open Graph API. Does anyone know how I can do this? Found the answer here with this excellent example: ...
13
votes
6answers
9k views

Retrieve Facebook Fan Names

I'm trying to grab the names of fans of a Facebook fan page that I administer. I've done some snooping around, and apparently, the FB API doesn't support that, but Facebook actually uses AJAX/JSON to ...
12
votes
1answer
643 views

How to get (better) demographics for fans of a Facebook page?

I'm trying to get demographics for fans of a page on Facebook - mostly country and city, but age and gender as secondary. The primary way to do it is using FQL and doing a query in the insights ...
12
votes
1answer
744 views

How to determine if Facebook users Unlike a URL?

We have a web app where we need to track users "Likes" of URLs (not Facebook pages, external ones), because they earn credits for doing so. To do this we're using JQuery and the subscribe ...
8
votes
6answers
1k views

Handling big user IDs returned by FQL in PHP

I'm using FQL to retrieve a list of users from Facebook. For consistency I get the result as JSON. This causes a problem - since the returned JSON encodes the user IDs as numbers, json_decode() ...
7
votes
1answer
5k views

Fan count for a Facebook Fan Page

I needed to pull the fan count for particular fan pages on Facebook. After digging through the API, I couldn't find a way to do this with the API "proper." Instead I fell back to a FQL query, and it ...
6
votes
0answers
230 views

FB Realtime API not/inconsistently notifying for certain connections (music, movies, books, tv)

I'm currently running into an issue with Facebook's realtime API. I wish to subscribe to a number of things on a users profile, including their "Likes" in the Music, Books, TV and Movies categories. ...
6
votes
2answers
1k views

Facebook - obtain location /places ID via location name

I'm able to return a location's details by sending a query via the graph api with the location's ID, however I'm looking to achieve the reverse - effectively find location id by sending a request ...
6
votes
3answers
176 views

Empty result for type=page in facebook

I am using facebook graph API to get the business detail by "type=page" , but for some business name show empty result I have to use url http://graph.facebook.com/search?q="Business ...
6
votes
6answers
4k views

How to list facebook users who like a page or interest

I wanna get a list of facebook users who like a page or interest. FQL like 'SELECT user_id FROM like WHERE object_id=113970468613229' does not work. Is there a way to do this?
6
votes
1answer
298 views

Father's day coming up! - Can I get the profile of a Facebook user's father?

I'd like to get the Facebook profile ID of a Facebook user's father. Basically I want to display a picture of the user's father and say 'how about buying an X for Dad'. Is this possible with the ...
5
votes
3answers
757 views

How can I optimize my FQL to avoid Facebook timeouts?

Let's take a simple FQL query to get all links shared by a user's friends since yesterday for example: SELECT link_id, title, url, owner, created_time FROM link WHERE created_time > ...
5
votes
1answer
258 views

Facebook Like button, can it be made read only?

I'm using Facebook Likes in my site. I have a gallery page which shows picture/video data and the number of likes for that data. Each piece of data has it's own URL which can be liked. However, I ...
5
votes
4answers
3k views

Graph API - Get events by owner/creator

Is there a way with the Facebook Graph API to get a list of all events created by a single profile? Our client creates a bunch of events and we want to pull a list of them all. I said that they would ...
5
votes
1answer
5k views

Facebook — best way to do FQL “join” with event and event_member?

In a Facebook app I need to get a user's events for a date range and his rsvp status for each event. I can get the user's events fine, but at the moment I'm looking up the rsvp status for each event ...
4
votes
2answers
983 views

Get all of a user's likes (all of them) with FQL

I'm trying to get ALL of a user's likes with FQL. Following is my research including what I've tried and the problems with each attempt. 1) The most simple method would be to query the table on the ...
4
votes
3answers
1k views

Facebook iFrame app - how to fetch Preload FQL result using PHP SDK?

since few years I have an FBML app (a small Flash game) which I'm now trying to convert to an iFrame app. Unfortunately there aren't many docs for Facebook iFrame apps yet. For my game I need the ...
4
votes
2answers
4k views

Retrieve Facebook users that like a URL / web page via Open Graph

Is there a way to retrieve the list of Facebook users that have clicked the like button on an external website? E.g. there is a domain example.com which has been confirmed via Facebook Insights to ...
4
votes
2answers
869 views

Getting all likes on my domain (facebook)

I'm trying to get statistics for likes on my domain. I would like to get all likes (if possible with user ids) for all pages on my domain (which has tens of thousands of pages) What does ...
4
votes
1answer
317 views

Facebook: Is it possible to show only the user OWN posts

I ask for the wall posts of a user and I also get the posts of other people who posted there. How do I post ONLY the posts of the user?
4
votes
5answers
2k views

Facebook FQL returns <fql_query_response list=“true”/>

I am trying to get a facebook fql query to work using the browser, I have a valid oauth token (I can make graph api calls with it). Here is the url I tried: ...
4
votes
2answers
4k views

Get users' Facebook Likes with FQL

Hello everyone I am trying to get my friends 's likes on FB using FQL 'SELECT name,type FROM page WHERE page_id IN (SELECT target_id FROM connection WHERE source_id=%i and target_type="Page") AND ...
4
votes
2answers
2k views

How to query the like count of a facebook object such as a album or photo via fql?

Here is a tricky question, how do you get the like count of a facebook object such as an album or a photo? I know that facebook has a fql table called link_stat that allow you to get the like count ...
4
votes
2answers
6k views

FQL: Facebook application php

Hello I have implemented the following $fql = "SELECT uid2 FROM friend WHERE uid1=" . $uid; $param = array( 'method' => 'fql.query', 'query' => $fql, 'callback' => '' ); ...
3
votes
1answer
33 views

Facebook Insights reliable way of getting the last update?

Today is 23 gen 2012. I'm querying Facebook Insights with FQL using PHP SDK. The metrics show different delay in insights updates: page_friends_of_fans metric: available for 20 gen 2012 and before, ...
3
votes
2answers
254 views

FQL “like” table not returning any results

I'm using the Graph API explorer to run this seemingly simple query to get a list of post_ids (stream) from the like table. ...
3
votes
1answer
196 views

Facebook Insights API - App News Feed counts for Impressions and Clicks

I have been exploring the Facebook insights FQL table, and I assumed I could get to all of the data which is available via the insights dashboard from the FB app admin. However, I am having trouble ...
3
votes
4answers
295 views

Facebook API people search filtered by country

I'm trying to search people using the Facebook API (Graph API or FQL, whichever works). Up to this point, it's working just fine but I can't get it to be filtered by country or language. I'm ...
3
votes
1answer
76 views

Get the top 10 of fans who have more friends that are fans of a page

Is it possible to generate a top 10 of fans of a page that have the highest number of friends that are fans of the same page? Thanks!
3
votes
1answer
227 views

How to retrieve ALL Facebook photos a person is tagged in

I know you can append limit and offset values to the graph.facebook.com/id/photos API call to paginate through photos. But large limits don't seem to work well, photos end up missing. I read here ...
3
votes
3answers
545 views

Is there an API to retrieve Facebook recent activity?

I know there's a Graph api url for getting the recent wall feeds, i.e https://graph.facebook.com/me/feed?access_token=... But how do i get the Recent Activity? Is there any way? PS: FQL (not ...
3
votes
1answer
96 views

How to get notified about new friends and removed friends using the Facebook API?

I need to implement a Facebook application in which a user registers with my application and I get the user's access_token with offline access. How can I check who has removed the user from the user's ...
3
votes
1answer
579 views

Obtain all comments posted to a Facebook social comments page using FQL

Is there a way to use FQL to obtain the XID of all comments posted on any page associated with a particular Facebook application ID? The docs listed for FQL on the comments_info table at this address ...
3
votes
1answer
2k views

In Facebook graph API how to find which all of your friends like a particular book or movie

I'm trying to figure out how to find how many of my friends like a particular entity. For example, for a given book or movie, how can I look up how many of my friends have already liked the same book ...
3
votes
3answers
731 views

Unable to retrieve user info through facebook api or FQL

I am building an app in which I need to read education and work history of all people(if it is not hidden by privacy settings) in a facebook group(public group). People in the group need not ...
3
votes
3answers
3k views

Facebook mutual friends and FQL 4999/5000 record limit

I'm trying to select all mutual friends' connections with PHP/FQL. Using my UID (540 friends), which means >12,000 connections, of which >6500 are unique. So this code should return all the ...
3
votes
3answers
4k views

Facebook API - How to get user's address, phone #?

Is anyone able to get facebook user's address, phone # using FQL or Graph api? Have tried the following FQL and was able to get 'Current City' and 'Hometown' which are under 'Basic information' but ...
3
votes
1answer
847 views

retrieving facebook likes via fql for 'non-facebook' objects

basically I am trying to get the total of (facebook) likes for an external object via FQL. I already retrieve the comments for that object via FQL with the xid as identifier. My problem is that I need ...
3
votes
1answer
5k views

iPhone facebook connect FQL Query to get user's friends

I'm trying to get a list of user's friends using fb connect for the iphone. I've tried both of the following FQL Queries, but they don't seem to be returning anything. which one is correct if any ? ...
2
votes
3answers
69 views

Translate Python code to C# equivalent

I would like to rewrite the python code example from the book to C# equivalent in order to test its functionality. The code is the following: q = "select target_id from connection where ...
2
votes
1answer
42 views

Facebook php SDK/SQL - Get user's first status EVER

I need help retrieving users first status EVER. Is there any chance to do it? Now I use: $result = $this->fb->api('/me/statuses?limit=1'); How to make it work, maybe some fql query or ...
2
votes
2answers
35 views

Is it allowed to use two WHERE clauses in FQL?

I am trying to use two WHERE clauses in one fql query SELECT uid, pic, pic_square, name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) AND WHERE strstr('ab',name) but getting ...
2
votes
1answer
49 views

Fastest way to get user's latest 20 friend checkins?

I'd like to get the current users 20 latest friend's checkins. I did the following FQL query which works, but is very slow (~10 seconds): SELECT checkin_id FROM checkin WHERE author_uid in (SELECT ...
2
votes
1answer
140 views

Paging with FQL

The graph api returns timestamps for the previous and the next pages for easy paging. How would one accomplish it with the FQL (for reading stream table posts)? Thanks in advance.
2
votes
1answer
120 views

How to get facebook video's original size(width & height) and how to get fql.video src_hq?

I tried to use facebook fql.video get video from my Idol's wall, then, how to get the video's original size(width & height)? And I noticed one field named src_hq in fql table, in its ...
2
votes
1answer
79 views

How to query stream table to get updates when some of my friend is tagged in a photo

my project requires get updates from my friend when they are tagged in a photo. On facebook site, such kind 'someone is tagged in a photo' message is automatically categorized in one of my frined list ...
2
votes
2answers
297 views

Create and Configure Facebook Apps via API

I'm looking for a solution to create and configure Facebook Apps via the Facebook APIs. It doens't matter if its Graph API / FQL or REST API but I couldn't find any way to do this.
2
votes
1answer
104 views

What are the supported operators and commands in FQL?

I'm trying to compile a complete list but the sources don't agree. Here's what I've got so far. Let me know if I'm missing anything, or if I've put anything in incorrectly. Basic format: SELECT ...
2
votes
1answer
88 views

unified_thread fql table available to public or not?

I see facebook removed the banner from the unified_thread documentation page (which previously stated it was for developers accounts only) but I still get the "must be a developer" error. Am I doing ...

1 2 3 4 5 15