The fql.multiquery tag has no wiki summary.
0
votes
0answers
22 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
175 views
Facebook July 2013 Breaking Changes multiquery
I turned on the July 2013 Breaking Changes in Facebook, and after that my multiquery doesn't work. When i put the query two different multiquery, it was good, but why???
The original query:
...
0
votes
1answer
82 views
Facebook API Rate Limit - Server-side vs Client-side
To my understanding the rate limit for facebook API is about 600 calls per 600 sec, per token & IP. Now I have a website/facebook-app that allows users to browse public nightclub pages and events ...
0
votes
0answers
90 views
Get each post id with all comments using facebook FQL
i want to get each post id with all comments for a page using fql query.if i use -
SELECT text,post_id FROM comment WHERE post_id IN(SELECT post_id FROM stream WHERE source_id=page_id_here)
...
-1
votes
0answers
57 views
Get page/profile/group feed posts along with all comments using FQL [closed]
Because of the problem of getting comments per post i specified here - link
I want to use Fql query of facebook to get ALL FIELDS for page/group/profile feed posts as Graph api does.Also i need all ...
0
votes
0answers
16 views
Select photo_tag from friends
Recently I deleted many photos from my profile but I did not untag myself first.
Now I have 100 photos active, though my profile says that I have 700.
It seems that it still counts the photos of my ...
0
votes
0answers
37 views
Facebook FQL Query - Pulling Page pic_square and posts
I'm trying to do an FQL query to pull the posts of a Facebook page, and then show the array of data that shows the post_id, message of the stream and also the pic_square for the page.
My FQL QUERY ...
0
votes
0answers
28 views
Need FQL query for the default album created by a specific app?
I am working on a facebook app (iOS) that will upload/download images to the logged in user's albums.
Upload is not a problem. When we upload photos using graph api, Facebook will automatically ...
0
votes
2answers
249 views
Graph API: An unknown error occurred while fetching fql multiquries
I have a problem using the PHP SDK:
$fql="{'query1':'SELECT uid2 FROM friend WHERE uid1=me()',
'query2':'SELECT author_uid FROM checkin WHERE author_uid IN(SELECT uid2 FROM #query1) AND ...
2
votes
0answers
81 views
FQL multiquery with event CREATOR does not work anymore
I got several iOS apps that make an FQL multiquery to get infos about events by a certain creator.
query1: "SELECT eid, uid FROM event_member WHERE uid = %@"
query2: "SELECT eid, name, venue, ...
0
votes
2answers
130 views
Getting 'unsupported method, fql.multiquery' when fetching data from Facebook
I'm trying to fetch data in my Android-App from Facebook via FQL multiquery like discribed here: http://www.kanatorn.info/2011/12/31/fql-multiple-query-android-sdk-example/
here's my code:
...
2
votes
1answer
133 views
Get Facebook page's stream from a Global Page
I have a little problem with the Facebook api.
I am doing a very simple FQL request to get a Page's stream like this one :
SELECT post_id, type, likes, comments FROM stream WHERE source_id = X
It ...
0
votes
1answer
120 views
FQL multiquery does not always work
I have a strange problem with a FQL multiquery
This is my query:
NSString *query =
@"{"
@"\"events_info\":\"SELECT name, description, pic_small, pic_big, eid, venue, location, ...
0
votes
1answer
60 views
Getting all commets for an event with FQL
i am trying to list all comments for an event created by a certain page. I am getting the EID for for the event with a multiquery like this:
{ 'eids':'
SELECT eid, uid
FROM event_member
WHERE uid = ...
-1
votes
1answer
190 views
Parsing Facebook FQL Multiquery in Java
I'm having some trouble with parsing an FQL multiquery for Facebook. I don't know how I need to handle the JSONArray with the same name in the result -> fql_result_set. Here is the FQL JSON I got.
{
...
0
votes
0answers
74 views
How to echo a multiquery array in PHP [closed]
This is what I have so far:
$multiQuery = '{
"event_info":"
SELECT name,description,start_time,end_time,pic_small,pic_big, eid,venue,location
FROM event WHERE eid IN (SELECT eid FROM ...
1
vote
1answer
67 views
FQL Multiquery Returned Info
I'm trying to use an FQL Multiquery to obtain my most recent Facebook question and options with one query using an http request.
So far the query I tried to use is:
SELECT name, votes FROM ...
0
votes
1answer
110 views
Get recent comments from Facebook page with associated user data
As the subject says, I am trying to get the most recent comments from a Facebook page, with associated user data. I am using Open Graph & the PHP SDK.
This works fine for the posts:
$fql_query = ...
0
votes
0answers
131 views
Facebook FQL Query to extract full thread from each user in the OTHER mailbox
New to FQL and wanted to extract "OTHER" mailbox archived or not and group all body messages by user. The query example below grabs each message and in INBOX only. folder_id is 0 for inbox, 1 for ...
0
votes
0answers
78 views
How can I make fql querys faster?
I'm trying to get a count of all the events that a user's friends have created using fql, but it is very slow, about 15 to 17 seconds to load.
Here is the code:
// Run FQL Multiquery to get all ...
1
vote
1answer
360 views
Facebook FQL multiquery on stream and user details
I am aiming to create a FQL query to retrieve all of my friends stream posts with their full name and email returned altogether. So I created a FQL multiquery (as below) but i keep getting empty ...
3
votes
2answers
146 views
FQL: Selecting friend's photos
This FQL attempting to fetch photos for my friends
[1]
{"query1":"SELECT owner, object_id, src_big FROM photo
WHERE owner IN (SELECT uid2 FROM friend WHERE uid1=me())"}
provides this error ...
0
votes
0answers
170 views
Retrieve friends photos with Facbeook C# SDK
I've been trying to explore the Facbeook C# SDK with the intent to retrieve my friend's photos uploaded in the current month, and the multiquery request that I perform returns few results.
Here's ...
2
votes
1answer
231 views
echoing array from fql.multiquery
PHP / FACEBOOK'S FQL
Thank you for even reading this.
I'm having some serious inception issues, dream within a dream style.
I'm doing a multiquery to get the last 3 places a friend visited. I need ...
0
votes
1answer
121 views
Best way to call Graph API in a Loop
We are trying to make some reports using FB Data in which we get the FB ID of the users. For getting the gender and location, we need to call the Graph API https://graph.facebook.com/User_ID in a ...
0
votes
0answers
98 views
Get the first two comments for a list of posts
i have a list of post_id's. For each post_id i want to query the last two comments. How can i do this in one query?
i tried:
https://graph.facebook.com/fql?q={
'likes': 'SELECT user_id, post_id FROM ...
0
votes
0answers
114 views
How to get all groups names using FQL
How can I get all group names from GROUP table using FQL, on iPhone?
I wrote the below query:
SELECT name FROM group WHERE gid>0
but it gives error:
{
"error": {
"message": "Your ...
0
votes
0answers
110 views
Facebook FQL: Missing fan page wall post data using fql
While importing Facebook fan page wall data using FQL query, some wall message's missing randomly.
I will really appreciate the suggestion.
Thanks!
0
votes
1answer
657 views
FQL get all photos from album
I'm using FBRequestConnection on iPhone for getting all photos from same album.
I want to get all photos from album which has 11 photos in it and aid="100001996111955_72360".
I wrote the below code, ...
0
votes
1answer
354 views
get profile picture creation date from user table in fql
how can I get my friends profile pictures creation date using fql multiqyery in iPhone?
I wrote the below FQL query:
SELECT src_small, src_big, src FROM photo WHERE src IN
(SELECT pic_square, ...
0
votes
1answer
375 views
FQL multi query on iOS
I'm programming on iOS using FacebookSDK, I need to get friends list as paging, so how can I get friends count and friend list (offset "value", limit 10) at one FQL query?
my queries:
SELECT ...
1
vote
2answers
532 views
FQL: query for event table returns venue.name instead of venue.id
When making a query to get event details I seem to get venue.name instead of venue.id in the result set. Has there been an unannounced change in the table structure or am I doing something wrong. The ...
1
vote
0answers
195 views
FQL multi-query optmization for events listing
I am working on a custom Events app in Facebook and have ran into an issue where the response seems quite slow. The slowness mostly relate to trying to search for a page that is associated with an ...
-2
votes
1answer
413 views
FQL : not able to get facebook user email-id?
I am using fql to fetch the list of all friends of a user and there basic info . How ever i am not able to get the email of user. below is my query :
$frd_fql = "SELECT uid,
...
1
vote
0answers
212 views
Fql mutliquery limit
I need to retrieve all Facebook counters of comments or share for each url of the site where I work. I wrote a batch who retrieves the counters by sending FQL multiqueries on the link_stat table. The ...
0
votes
1answer
238 views
FQL: Trouble joining tables where id is in format USERID_LINKID
I am running the following FQL via the php sdk:
{
"posts" : "SELECT post_id, actor_id, message, type FROM stream WHERE type = '80' AND message != '' AND filter_key in (SELECT filter_key FROM ...
0
votes
1answer
336 views
FQL.Multiquery - query syntax when passing as parameter
Looking for a little help with a simple task...the syntax for a facebook multi-query, where you'd pass in the query as a parameter.
Here is my method:
public dynamic FBFQL(string strQuery)
{
...
0
votes
2answers
340 views
Facebook FQL Query OR
I am trying to create an OR clause in FQL query.
Here is my query :
SELECT post_id, message, permalink, likes, actor_id, created_time FROM stream WHERE
(source_id = xxx1 AND message != '' AND ...
3
votes
2answers
2k views
FQL in the SDK 3.0 Beta for iOS
I cannot find the requestWithMethodName method anywhere in the new 3.0 Beta SDK for iOS. Did you guys drop it and if so, how are we supposed to send fql queries to the API now?
Or were those ...
0
votes
1answer
238 views
FQL query php:how to make a query to find the number of likes got to the users comments
how to make a query to find the number of likes got to the users comments
0
votes
1answer
486 views
How can I get facebook albums with images from users
I am creating a facebook app and i want to display the users albums with the cover image, i have tried with code #1 but it is really really slow as i make a facebook api call in the foreach which ...
0
votes
1answer
56 views
Get total number of suscribed people to person with fql
I am currently finding the number of subscribers to a profile with the graph api, but in doing so many calls is very slow, so I would get all the numbers with a multiquery to optimize time
thanks
1
vote
1answer
556 views
FQL get like count from friends in links
This might sounds complicated.
I want to retrieve links from my website whereby those links are liked by users and my friends. But I want to sort result by number of my friends' like count.
I have ...
0
votes
1answer
522 views
Upcoming Friends BirthDay List from Facebook
How can I get the list of upcoming b'days of my friends with user id, name and birth day. I am using following fql query to get the friends b'day list.
query = "SELECT uid, name, birthday_date FROM ...
0
votes
1answer
107 views
Can I get the list of friends who like my feed
Can I get the list of friends who like my feed
I wanna get the friends list who like my feed. So I execute this query.
But I get the empty result.
What shouuld I modify to get thefriends list who like ...
0
votes
1answer
185 views
Query of past events for a “like” page is not returning full list (as shown on actual page)
The code used to query (below) has not changed since before it was working correctly, but the page suddenly started only displaying one of the many past events. Has the functionality of the QL changed ...
3
votes
0answers
266 views
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 ...
1
vote
0answers
185 views
How to get the number of events for each of your friend using FQL and Facebook PHP SDK
I was wondering if there is an easy way to get the number of events your friend have created / have been invited. I just need to know how many events there are. I do
$fql = "SELECT name, id, pic ...
0
votes
2answers
629 views
How to make a fql multyquery with the PHP SDK
I'm trying to make a fql multy query using the PHP SDK. This is my code
try {
$fql = array(
"query1" => "SELECT uid2 FROM friend WHERE uid1 = me()",
"query2" => "SELECT ...
