Questions tagged [facebook-fql]

Facebook Query Language (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 such as using the results of one query in another.

Facebook Query Language (FQL) is now deprecated and the service is completely disabled and unusable.

FQL enabled you to use a SQL-style interface to query the data exposed by the Graph API. It provided for some advanced features not available in the Graph API such as using the results of one query in another.

3041 questions
7
votes
1 answer

How to get Facebook Friends Age in Android

I am writing an app in which i am fetching list of facebook friends along with their names, profile pics and birthdays, to get that i am using below query: String query = "SELECT name, birthday, uid, pic_square FROM user WHERE uid IN (SELECT uid2…
Babu
  • 957
  • 1
  • 9
  • 21
7
votes
1 answer

Getting a High Resolution picture from Facebook API

Facebook FQL API for Photos states the maximum resolution for a photo returned from the API is 960x960: The Photo object has an equivalent src connection. Using photo_src FQL, you can retrieve images with the following dimensions: 960, 720, …
jbkkd
  • 1,510
  • 5
  • 18
  • 37
7
votes
1 answer

Facebook FQL Query Event_member "Inviter" and "Inviter_type"

In the description of the FQL event_member page, it says that the column inviter should inform us about the ID of the user or page who invited a UID at the event, and inviter_type should inform us about whether the inviter was a user or a page. I…
7
votes
2 answers

How to get user Interests?

This is not a duplicate of How can I get the interests of my friend through facebook api?. user_interests permission (to access /me/interests) is useless (if not deprecated) Facebook feature that hardly ever returns any data. Instead, I am referring…
Gajus
  • 69,002
  • 70
  • 275
  • 438
7
votes
1 answer

What are the limits of Facebook FQL queries and Multiqueries (Max number of multiqueries and rate limitations)

Is there some documentation about limits of Facebook queries and multi-queries?I've found out by trying and testing that multi-queries start giving errors at around 250 multi-queries per request, but that is something which is not standard, because…
Nicola Peluchetti
  • 76,206
  • 31
  • 145
  • 192
6
votes
2 answers

How To Get Historical "Facebook Page Likes" Data via Graph API or FQL

Was wondering if anyone knows how to get the historical data for any Facebook Page. For example, number of fans for RedBull fan page on a given day in the past or for a given period that ends today so that I can show fan development of any page over…
Georg
  • 610
  • 2
  • 8
  • 22
6
votes
1 answer

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, not available for 21 gen 2012 page_fans: …
user1098965
6
votes
3 answers

Does Facebook expose the offset positioning for cropping a larger version of a user's profile thumbnail?

I've recently noticed that in the layouts for the new Timeline profile, Facebook is using the "normal" version (read: larger) of the user's profile image extensively, both on the Timeline and in the Friends List. As we all know, this image is…
Mark P.
  • 171
  • 1
  • 7
6
votes
2 answers

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.
6
votes
3 answers

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"}, \ {"method": "GET", "relative_url":…
Peril
  • 1,569
  • 6
  • 25
  • 42
6
votes
2 answers

Graph API vs FQL which is faster?

just wondering when it comes to just the basic GET/POST. (i.e something simple as getting the users profile and not something complicated like getting a pictures from every album) which is faster? Graph or FQL. i know FQL is newer than graph, but…
Nate
  • 1,630
  • 2
  • 24
  • 41
6
votes
3 answers

SSL Connection timeout in facebook fql

I am using facebook api to get backup of the facebook photos using access_token and fql. Using fql I got the list of albums of the user $client = new Facebook(array('appId' => 'xxxx', 'secret' => 'xxxxxx')); $fql_albums = "SELECT aid,name from album…
Asghar
  • 2,336
  • 8
  • 46
  • 79
6
votes
1 answer

Determine Object_ID of a URL to use with the Facebook Open Graph

I am trying to learn how to use the Facebook Open Graph API and have a question on how to determine the object_id of my site. I need this object_id so that I can do other queries, such as I want to get a list of users who have liked my site within…
Kevin
  • 1,141
  • 16
  • 27
6
votes
2 answers

How to use Facebook graph API to retrieve fan photos uploaded to wall of fan page?

I am creating an external photo gallery using PHP and the Facebook graph API. It pulls thumbnails as well as the large image from albums on our Facebook Fan Page. Everything works perfect, except I'm only able to retrieve photos that an ADMIN…
Joe
  • 5,955
  • 2
  • 29
  • 42
6
votes
3 answers

How to filter by category in FQL

As you can see here, Businesses have their category information: Local Business, Sport, Education.. etc. It is the field "category". I would like to know, is there a way to filter businesses by their category and position with FQL? I haven't found…
Pablo Castilla
  • 2,723
  • 2
  • 28
  • 33