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.
0
votes
0answers
13 views
Unable to resolve infinite redirect loop?
I have hosted my facebook app on heroku just now, I followed the tutorial commit my work push it to remote. I refreshed the hosted page url It showed the first page as it was showing earlier when I ...
-8
votes
0answers
31 views
Get photos in which I tagged my friends [closed]
I want to get those photos in which I tagged my friends. Is it possible? If yes then please give me some sample code. Thanks
0
votes
0answers
4 views
Missing posts in Stream
This issue were removed by a reason I can't figure out. Maybe there are problems with my links below, so I try in text instead:
In Graph API Explorer, I am writing:
SELECT message, updated_time from ...
0
votes
1answer
7 views
Get tagged user_id tagged on video using facebook api
I want to get tagged user_ids from Facebook Graph api. I have successfully done that for photo using
https://graph.facebook.com/photo_id/tags
this gives me the user_ids tagged in the photo.
when i ...
0
votes
1answer
8 views
Consult mailbox_folder Error (FQL)
I need to consult direct messages from a fan page, run the following FQL
https://graph.facebook.com/fql?q=select folder_id from mailbox_folder where viewer_id = <my fanpage ...
-1
votes
0answers
14 views
Stange FQL error
I have a problem with a FQL query but I not know the problem:
the fql query is:
@"{"
@"\"event\":\""
@"SELECT name, description, pic_small, pic_big, eid, venue, ...
0
votes
0answers
11 views
How do I get all details about items on a user's Facebook wall?
My app is displaying a user's Facebook feed data (ie wall posts).
The problem I'm having is getting all of the info for the types of post which alert the user to an action they have taken on another ...
0
votes
1answer
13 views
Any way to use elements of FQL attachment media array in multiquery?
I need to get the list of comments for each item in a user's news feed including comments for any media in the feed items.
I'm trying to avoid multiple FQL query roundtrips, so I'd like to use ...
0
votes
0answers
31 views
FQL query list of friends that allows apps to access their photos
I am using the iOS Facebook SDK for my application. My app needs to access to user's friends photos.
However some users denies apps to access their photos. What I would like to do is to filter those ...
0
votes
0answers
11 views
FQL Query in another FQL Query issue
I recently started rebulding my application to integrate the new Facebook SDK 3.0.1 to comply with the breaking changes scheduled for July, 13.
All was working perfect till then. I am attempting to ...
0
votes
1answer
17 views
Searching app users
I want to create a dating app where the app user would search for matches based on gender, age, and current city, even if those matches are not friends. I'm assuming that there's no way to search all ...
0
votes
0answers
17 views
facebook Request not working
I'm making a request to Facebook api in android with SDK 3.0.1 and I'm running it with executeAndWait() but the request doesn't work (in debug it jumps directly to next row, not even a millisecond..) ...
0
votes
0answers
30 views
FQL: list posts from stream table - how to exclude special post types?
The simple query returns a list of recent posts:
SELECT post_id from stream where filter_key="nf"
I know, this query is useless - its only a example, but it works^^
I get the list of posts from ...
0
votes
0answers
8 views
Facebook Query Language- FB Messages
Well, I wanted to read a Facebook message convo that went on around 3 years ago. However, the messenger was taking a while to get to the beginning of my messaging with that person.
How can I use the ...
0
votes
1answer
12 views
Get list of Facebook applications installed and permissions?
I've looked through all the documentation in the FB Graph API and can't find exactly what I'm looking for, so it might not exist, but hoping someone has some ideas.
I'm looking to get a user ...
0
votes
0answers
10 views
Why can't I retrieve liked url by using FQL
I'm a newbie to facebook fql and not a English speaker.
Sorry if you are hard to understand my English.
I recently did "like" to this website.
...
0
votes
0answers
8 views
FQL: How can I get the photos that are uploaded by user for check in?
In the checkin table, I can find out the target_id which is also a column in a photo table. However, I cannot do a WHERE query on the target_id to find out the src of photo because that column is not ...
0
votes
1answer
33 views
Facebook FQL query by Facebook ID
I am new in Facebook development, I want to query facebook by Facebook ID for info like (likes, profile pictures e.t.c).
I retrieve the URI ex. http://graph.facebook.com/1234567891 and i want to use ...
0
votes
0answers
11 views
Facebook FQL - what is difference between normalized_url and url in link_stat table
url is the indexed field in table link_stat for querying number of likes, etc. for a given url, but the table also contains a field normalized_url. No explanation in the sparse Facebook ...
0
votes
0answers
23 views
Friend's video location posts issue
I get no data when trying to fetch my friends video location posts. Anyone know why?
Here's the query:
SELECT id, coords, author_uid, page_id, timestamp, type FROM location_post WHERE ...
0
votes
0answers
25 views
FQL multiquery friendlist table returns blank array
i have been working on an app on my website using the PHP-SDK.
i am trying to fetch the logged in users friendlists, but returns a blank array with no data. i have tried looking over the ...
1
vote
0answers
15 views
Facebook FQL Active Users Over time
I know SQL well but am just getting started with the FB insights data. I am a little confused as to whether I should be following this:
...
0
votes
0answers
6 views
Use FQL to set a website's most recommended links (similar to the Activity Feed Social Plugin)
The Facebook Activity Feed Social Plugin is a feed of most recommended ('liked') objects for a website. How can I do the same thing using FQL? Essentially, given a website, obtain the most ...
0
votes
0answers
27 views
Get all public facebook events in a given area?
Is there a way to get all public facebook events in a given area, regardless of wether you are linked to them in any way? I have seen a few posts on how to get events you are invited to but not to get ...
0
votes
0answers
17 views
FQL - How do i filter friends based on their work history
I am trying to filter my friends based on work history by using fql, but fql does not return any results.
Here is the fql i am trying:
select uid,username,work from user where uid in (select uid1 from ...
0
votes
0answers
14 views
Can't Access FQL Video Data
I can get the FQL Video data when i am join the facebook developer team in an apps
here is the detail output when i am still a developer
select thumbnail_link,vid from video where owner = ...
-1
votes
1answer
22 views
Android Integrating Facebook - Getting FQL resonse in changed order
I am developing an android application which includes the facebook integration. If I execute multiple fql queries, I am getting the response in changed order.
I am using the following code:
public ...
1
vote
2answers
104 views
What field type to store the facebook stream tags?
I have created a simple facebook app and I want to store the facebook stream tags in my mysql database with stream infomation. What field type do I have to use to store the facebook stream tags?
...
0
votes
1answer
20 views
What field type to store the facebook message?
I have created a simple facebook app and I want to store the facebook message in my mysql database. What field type do I have to use to store the facebook message?
facebook message can be 60,236 ...
0
votes
1answer
34 views
Android - FQL query to get album photo count
I am using facebook sdk to integrate facebook with my android application. I want to count the number of photos in a album. I am having my album id.
I need like the following one.
SELECT count FROM ...
0
votes
0answers
31 views
Using Facebook Query Language can I store that information in my application?
If I use FQL (https://developers.facebook.com/docs/reference/fql/) to find the application activity of my friends for my application through Facebook is there a way to store that information in my ...
-2
votes
0answers
28 views
Facebook FQL Your statement is not indexable. The WHERE clause must contain an indexable column
I wish to have the list of all fans of MY facebook page.
I tried with FQL to type
...
0
votes
1answer
41 views
Facebook Query Of Friends and Common Places
I am working on an android app that interacts with facebook places.I have the users place list(checkins,status) and the users's friends list.I also have the place list for each of the user's friends.I ...
1
vote
1answer
55 views
Facebook API get friend albums not working for some friends
I'm using the following FQL query
'select src,src_big from photo where aid in(select aid from album where owner=' + contactId + ' and type="profile")'
But it works for about 50% of my friends, and ...
0
votes
0answers
76 views
getting feed posts with comments not works when july 2013 migration enabled
i was getting feed posts with https://graph.facebook.com/group_id/feed call and comments for each post of the feed using fql query in successive calls using user access token generated by my facebook ...
1
vote
1answer
23 views
FQL Query capabilities
Just getting started with FQL and Graph API.
Is there a way to run a query that performs the same kind of search that you would do on Facebook Graph Search?
For example, user logs in with FB. She ...
0
votes
0answers
9 views
Need to get a Commenter's “category” from FQL result. Possible in Graph, but not in FQL?
I had written a function that used the Graph to analyze all the comments on a webpage and ignore ones where the [from] element had a category:. If the commenter has a category they are not a real ...
0
votes
0answers
19 views
FQL Find Friends that shared the same Link
How can I find the no of friends that have shared the same URL? Like Facebook shows on my News Feed that Friend 1, Friend 2 and Others have shared this URL.
Is there any way in FQL or Graph API?
0
votes
1answer
20 views
FQL query doesn't return the correct results
I'm running the following fql query in the graph explorer:
select album_object_id, object_id, aid, pid from photo where object_id=576544082370719
and i get the correct results i want:
{
"data": [
...
0
votes
1answer
17 views
Need current syntax for writing an FQL query in PHP
Because using the Graph to get comment information craps out at a certain volume (even with pagination) I need an FQL solution. Unfortunately, all the documentation and blogs I've found contain ...
0
votes
0answers
16 views
Service temporarily unavailable - PHP SDK
When ever I try to get a large data set say, I am writing an FQL something like
select ...
0
votes
0answers
13 views
Facebook FQL request error
I'm doing some FQL requests from my iOS app. Sometimes error can occur in the response. I'm interested in knowing if the key NSErrorFailingURLStringKey that contains my FQL request will always be ...
0
votes
1answer
60 views
Using FQL to get comments from a webpage, LIMIT and OFFSET, but result fail when there are more than 900 comments
I'm running a contest where I count up all the daily comments on a webpage per unique commenter each day. At the end of the month, the person with the most comment-votes wins. I have logic written ...
0
votes
0answers
5 views
Blank data when Query with FQL
I'd like to query "my friend_id who like my status in latest 3 days"
I test this query with "Graph API Explorer", no problem.
but in iOS I received blank data ? What's wrong ?
NSString *query =
...
0
votes
0answers
23 views
Facebook API Load Time is Twice as Long with User Session
When the user is the not logged in, my app makes the API calls using the app access token. When the user is logged on then my app makes the API calls using the user access token, but then the pages ...
0
votes
1answer
22 views
FQL query keeps returning “Invalid API Key”, despite working in API Explorer
I'm trying the following query:
SELECT uid FROM user WHERE is_app_user AND uid IN (SELECT uid2 FROM friend WHERE uid1 = me()) ORDER BY rand()
And it seems to work using the Graph API Explorer tool. ...
0
votes
1answer
9 views
FQL using JavaScript? Is it possible? [duplicate]
Is it possible to use the FQL in JavaScript to query Facebook for information? If so, how would I do that? Anyone have an example of how to do use the FQL in JavaScript?
0
votes
0answers
12 views
Facebook API ignores FQL query
I used to load comments count using FQL - now, it's not possible...
simple demonstration php script
<?
$string = ...
0
votes
1answer
26 views
inconsistency of data using FQL - Table stream
I'm using FQL to get the post recently modified to exactly 10 minutes ago, the FQL used is as follows:
SELECT post_id, message, created_time, likes.count, likes.user_likes, comments.count, actor_id
...
0
votes
0answers
33 views
Exclude mobile online users from friends list on FQL
I'm querying Graph API for user's friends:
"SELECT uid, name, pic_square, online_presence FROM user WHERE (uid IN (SELECT uid2 FROM friend WHERE uid1=me())) ORDER by online_presence"
and getting ...
