Tagged Questions
Facebook Query Language, or FQL, enables you to use a SQL-style interface to query the data exposed by the Graph API.
12
votes
1answer
640 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 ...
9
votes
1answer
366 views
Retrieve all comments with FQL by application ID
We use the facebook comment plugin to have comments on our site.
To moderate those, we use this tool: https://developers.facebook.com/tools/comments
However, we want to build our own tool to ...
8
votes
1answer
272 views
How to get all the Open Graph Beta actions generated by an app?
It is already possible to get all actions for custom app actions and objects:
https://graph.facebook.com/me/{appNameSpace}:{action}/{object}
This will list all the actions generated by an app, but ...
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() ...
6
votes
1answer
265 views
Key Facebook insights metrics deprecated — alternatives not documented?
Over at https://developers.facebook.com/docs/reference/fql/insights/ Facebook states::
We are deprecating some old insights. These metrics are marked as __deprecated__
throughout this document. After ...
6
votes
3answers
175 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?
5
votes
3answers
193 views
How I can do facebook batch fql in java
in facebook fql theres this code
https://developers.facebook.com/docs/reference/api/batch/
curl \
-F 'access_token=…' \
-F 'batch=[ \
{"method": "GET", "relative_url": "me"}, \
...
5
votes
3answers
740 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
3answers
3k views
Facebook FQL - How do I fetch the posts I made to a friend's wall
I have a facebook desktop app with some test users all having granted the stream_read & offline access permissions.
I can easily retrieve posts to each users' stream & profile.
What I cannot ...
5
votes
3answers
648 views
Facebook - max number of parameters in “IN” clause?
In Facebook query language(FQL), you can specify an IN clause, like:
SELECT uid1, uid2 FROM friend WHERE uid1 IN (1000, 1001, 1002)
Does anyone know what's the max number of parameters you can ...
4
votes
1answer
122 views
How to parse FQL response of Facebook pages by category and/or location? (Python)
Long time listener, first time caller..
I'm getting a good result from my Facebook Open Graph API query:
fbtest = graph.request("/fql", {"q": "SELECT name, page_id, categories, location
FROM page ...
4
votes
2answers
243 views
Javascript - how to wait for facebook
My app does the following:
1. Asks for the friends_online_presence permission.
2. If the user gave the permission (i.e the callback indicated success) I immidiately test for the permissions(*) and ...
4
votes
2answers
892 views
Facebook FQL multiquery in iOS SDK
Iam looking for some documentation or sample code on how to send multiquery fql requests to Facebook via iOS SDK.
I found some older samples but they doesnt work for me.
I have populated an ...
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
762 views
FaceBook query using FQL
While fetching:
https://api.facebook.com/method/fql.query?query=Select+page_id,page_url,name,pic,website,type,location,fan_count,phone+from+page+where+name%20%20=%22SPA%22
i am getting all exact match ...
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
1answer
4k views
Accessing Facebook wall posts
Is there a way, via FQL or the Facebook API, to access the wall posts to a fan page (not a profile)?
3
votes
1answer
187 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
1answer
74 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
110 views
How to get the “shares” of a wall post with FQL
I can't find them in the "stream" table, nor if with a "link_stat" query... any solutions ?
3
votes
3answers
529 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
2k views
Facebook FQL LIKE operator [closed]
Possible Duplicates:
Does facebook fql contain the sql like operator?
FaceBook query using FQL
Is it possible to use the familiar SQL LIKE operator within Facebook's query language?
I ...
3
votes
3answers
729 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
1answer
365 views
How can I get “is now friends with” and “was tagged in” posts in Facebook Graph API?
I am using ASP.NET and C# together with the latest Facebook SDK API from codeplex (Graph API). I would like to get all of my (the logged in user) newsfeed contents as a JSON object.
Using the ...
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
4answers
2k views
How can I count the total friends of a Facebook user by uid?
How can I count the total friends of a Facebook user by uid?
3
votes
1answer
102 views
Do combination OR and AND statements work with Facebook's FQL?
I'm attempting to execute a semi-advanced query using Facebook's FQL.
SELECT message FROM stream WHERE actor_id= userid_1 AND source_id=userid_2 OR actor_id=userid_2 AND source_id=userid_1
...
2
votes
1answer
42 views
Get id's of people that are using your facebook app at this moment
How can I get a list of all the people that are using my Facebook app at this moment?
Is that even possible?
I need it in order to compare with user's friends, so the users would know if one of their ...
2
votes
0answers
26 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, ...
2
votes
2answers
34 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
132 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
164 views
Facebook FQL for fetching photo
My original point was to fetch the links of every photos of a facebook photo album, so I am trying to execute this FQL query:
select link from photo where aid=xxxxxxxxxxx
I want to execute it from ...
2
votes
2answers
87 views
Facebook feed - post type
I am using FQL to get a users feed, the problem I am having is working out what type of post each item of the feed is.
ie
status update
album
photo
link
video
How do I determine the type of post? ...
2
votes
0answers
103 views
Graph api and custom actions
I know It is already possible to get all actions for custom app actions and objects:
https://graph.facebook.com/me/{appNameSpace}:{action}/{object}
This will list all the actions generated by an ...
2
votes
1answer
115 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
2answers
222 views
how to get friends in order of number of mutual friends?
I am developing a fb application.
And I want to know how I can get friends in the order of number of mutual friends.
Is it possible with fql or any other method?
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
1answer
110 views
How to select facebook 'notes' posted via application
There is an application using FQL. Is there an opportunity to select notes posted by the application with the known id? As far as I know, there is no field 'app_id' in the 'note' table.
2
votes
1answer
84 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 ...
2
votes
1answer
184 views
Get Friends' Facebook posts
Is there a way to use facebook's FQL to fetch all posts (or video posts) of a user's friend?
For example something like:
SELECT post_id, message FROM stream WHERE source_id=(fb_friends_array)
And ...
2
votes
1answer
174 views
How can I run an fql request in the background? (asynchronous api calls via php)
I'd like to run a particularly expensive fql query in the background, log results to the database, and retrieve it later without the user having to wait for each step.
Can you share an example of how ...
2
votes
1answer
101 views
Facebook API calls break page?
I'm trying to connect to the PHP SDK and retrieve a comment count from an fb:comments plugin I'm using on a project. However, when I try to make a $facebook->api() FQL call it always breaks my page. ...
2
votes
3answers
510 views
Facebook FQL / Graph - Get all current pokes
How can I get my current pokes (and pokes back)?
Normaly they must be in the table "notification" ... I am confused.
Hope someone can help me.
2
votes
1answer
235 views
Using CURL with FQL in a simple PHP social media class
I'm building a simple PHP class that will allows you to enter your twitter usename, number of tweets to load, facebook id, number of statuses to load, and access token and then retrieves your user ...
2
votes
3answers
939 views
How to determine if a Facebook user has uploaded a profile picture or its default?
Is there a way to know if a user uploaded an image to the profile or it has the default user picture of Facebook via FQL or somthing else?
2
votes
1answer
4k views
Facebook Javascript, How to detect if user is a fan of my facebook page? While on my site?
I have the following JS code.
The code's purpose is to first get the users facebook id, and then using FQL check that id against my page ID and make sure the user is a fan.
The problem I am running ...
2
votes
1answer
294 views
FQL time timezone offset wrong?
I've been pulling some info from Facebook status feed and I'm just wondering why I need to add 7 hours to the times to match up with my timezone? Normally I'm +10 and with daylight savings I would be ...
2
votes
1answer
1k views
Facebook connect Batch requests and FQL error problem
I'm developing an iPhone iOS app with FB connect.
I'm trying to get a lot of data for each of my friends, and multiple requests are needed.
I wonder if there's a way using batch requests in the iOS ...
2
votes
1answer
199 views
How to filter by category in FQL
As you can see here:
https://graph.facebook.com/175004205872488
Businesses have their category information: Local Business, Sport, Education.. etc. It is the field "category".
I would like to know, ...