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
1answer
6 views
Facebook get href from attachment
Is it possible to get image url from attachment. I have a FQL Query as follows
SELECT post_id , message, comments, created_time, attachment
FROM stream
WHERE source_id=XXXXXXX AND actor_id = ...
0
votes
1answer
15 views
Get all photos the user is tagged in on Facebook
I'm trying to fetch all the images I'm tagged in on Facebook.
It's working almost as it should, I just got one problem.
If I'm tagged in the post, but not tagged on the image, it doesn't show up in ...
0
votes
2answers
10 views
What is the correct way to post a checkin using the latest API?
/me/checkins is deprecated and no longer works however with the latest API me/feed specifying the place its impossible to post a checkin that can be read back using this query:
...
0
votes
0answers
33 views
How to get Facebook Post Like Count given FB Post ID via PHP or WordPress
I am trying to get the like count of some Facebook Posts (not pages). I am confused by all the options to get that data, and none of the options I've tried work. I'm not sure if I can get a like count ...
0
votes
0answers
5 views
How do I get posts from Event stream using FQL?
I'm trying to pull information about posts (like_counts, share_counts, comments_count, etc) to calculate some metrics for my game-show event on Facebook
I'm using the following query:
SELECT post_id ...
0
votes
0answers
17 views
Facebook: How to get list of last friends checkins using graph API or FQL
The following Graph API gets the first checkin for each friend. How do you get the last checkin?
...
0
votes
1answer
13 views
facebook graph api fql
I got a path in Graph API and I'd like to convert it to an FQL query. is there any possible way to proceed it with only one query?
me?fields=
photos.limit(1500).fields
(
name,
created_time,
...
-3
votes
0answers
13 views
I like, get facebook fbid, I always last photo fbid get! HOW? [on hold]
$fql = "SELECT post_fbid FROM comment WHERE time='now()'";
$param = array(
'method' => 'fql.query',
'query' => $fql,
'callback' => ...
0
votes
0answers
15 views
facebook graph api to fetch videos
How get the videos from a facebook page with PHP and Graph API? Right now I am using FQL to get videos:
$fql = "SELECT vid, owner, title, description, thumbnail_link, embed_html, updated_time, ...
-5
votes
0answers
30 views
how to invite friends to like a page via fb api [on hold]
I was looking for solution but I haven't found anything. My question is: is it possible to invite friend to like a specific page (URL is different than app) on Facebook via FB api? Thanks a lot
0
votes
1answer
15 views
facebook making stream more like feed (page-id/feed)
Now, i'm requesting this query:
$fb->api( array('method' => 'fql.query',
'query' => "SELECT [fields] FROM stream
WHERE source_id IN (
SELECT page_id ...
0
votes
2answers
17 views
Facebook php, how to filter out the feeds
I'm getting facebooks page feeds: $fb->api('/415533455147213/feed?limit=3');, and my question: how to filter this request that it doesn't return feeds which has a type named status (`'type' => ...
0
votes
0answers
9 views
Insights post_impressions return empty
The following FQL always returns empty JSON response. I have all the necessary permissions set up and I tried all the other suggestions mentioned here.
What else can I try?
SELECT metric, value ...
0
votes
0answers
8 views
Find friendships of members of a group with FQL
I am currently collecting data for a non-profit project, namely: graphing the social structure of the alumni of my former school. Many alumni flock to a specific Facebook group and that’s a natural ...
0
votes
0answers
10 views
getting top talked about pages on facebook
I have been searching for a way to get the top most talked about public pages on facebook so that I could have an app which could see how the results correlated with articles from other major news ...