Why FQL query for Post content returns empty data[]? - facebook

I'm trying to run this FQL and get the list of comments on a specific post:
select post_fbid, fromid, object_id, text, time FROM comment WHERE object_id = '518460828241435_546620402092144'
Why it is returning this:
{
"data": [
]
}
PS: I'm testing it on graph api explorer tool.
Thanks for the help! Really appreciate the help!

Use post_id instead of object_id. That is how I am using it.
Or else you are using an incorrect id that you pass as object_id :)

Related

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 multiquery.
I can get the comments for each post_id in the feed:
{
posts: 'SELECT post_id, attachment FROM stream WHERE filter_key = "nf"',
post_comments: 'SELECT post_id, fromid, text FROM comment WHERE post_id IN (SELECT post_id FROM #posts)'
}
However, there doesn't seem to be a way to reference content in the media elements so I can request the comments for media fbids, e.g.:
photo_comments: 'SELECT object_id, fromid, text FROM comment WHERE object_id in (SELECT attachment.media.fbid FROM #posts)'
This question (How to query FQL Stream by Attachment.Media.Type?) is very similar, but the answer was a bit uncertain & wasn't accepted.
Any suggestions or definitive answer?
Figures -- once I posted the question, I came across an answer to another question (http://facebook.stackoverflow.com/questions/8003581/get-photos-from-stream) that gave me what I needed:
photo_comments: 'SELECT object_id, fromid, text from comment where object_id in (SELECT attachment.media.photo.fbid from #posts)'
The example in my answer was a generic description, but turned out to be close to the actual technique (with the photo object missing in the path).
Hope this helps somebody else doing a similarly narrow search.

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 deprecated samples making it impossible for me to figure out the correct syntax.
I need to understand how to get this:
SELECT object_id, post_id, fromid, time, text, username
FROM comment
WHERE object_id
IN (SELECT comments_fbid FROM link_stat WHERE url='*** EVENT HREF ***')
into a PHP variable so I can access the data from a decoded JSON object like so:
$fql_obj = json_decode($fql_query, true);
I figured this out. For anyone else confused by it you append it to a graph lookup and replace spaces with +s:
$fql_query = "https://graph.facebook.com/fql?q=SELECT+object_id,+post_id,+fromid,+time,+text,+username+FROM+comment+WHERE+object_id+IN+SELECT+comments_fbid+FROM+link_stat+WHERE+url='***EVENTHREF***')";
$fql_obj = json_decode($fql_query, true);

Facebook FQL for retrieving a reply to a comment box comment

I'm using the Facebook comment box plugin and am also subscribing the comment.create JavaScript event so that I can retrieve the details of the comment from Facebook using FQL and store that comment data in my application's database.
So far, when I receive the ID and href of the new comment (passed into the comment.create event handler), I am able to use the following FQL to retrieve the details of that comment:
SELECT object_id, post_id, fromid, time, text, username
FROM comment
WHERE post_fbid='*** EVENT COMMENT_ID ***' AND object_id
IN (SELECT comments_fbid FROM link_stat WHERE url='*** EVENT HREF ***')
All of this works great.
The problem occurs when a user replies to a comment. In this case, the query above fails to retrieve the comment.
I've done some digging around and have found that the Facebook 'comment' table apparently has a 'comments' field (or relationship, not sure) that contains the replies to the comment. You can even use the following query to retrieve all of the replies to a comment:
SELECT comments
FROM comment
WHERE post_fbid='*** EVENT COMMENT_ID ***' AND object_id
IN (SELECT comments_fbid FROM link_stat WHERE url='*** EVENT HREF ***')
After tinkering with the FQL test console, I can see that the replies are being added to this 'comments' field. However, rather than trying to retrieve ALL of the replies, I'm trying to lookup the specific one whose ID I received in the comment.create event handler. The problem is, since 'comments' appears to be a field rather than a linked table, I don't think I can query it.
Anyone else run into this? Any advice would be greatly appreciated.
Thanks.
Try this:
SELECT text, time, id, likes, fromid, comments FROM comment WHERE is_private = 0 AND
object_id IN (SELECT comments_fbid FROM link_stat WHERE url ='YOUR_URL') or
object_id in (select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ='YOUR_URL'))
ORDER BY time DESC limit 0,10

A simple question about facebook comments plugin

I'm struggling with a very simple problem. The facebook documentation, as always, didn't give me enough explanation.
I attached a facebook comments plugin to my site. And using a callback of "comment.create" event, I can get information of a just-create comment.
FB.Event.subscribe('comment.create', function(response) {
alert(JSON.stringify(response));
});
The json reponse looks like:
{"href":"http://siteaddress.com/page.htm", "commentID":"111122223333" }
What I like to do now is to retrieve the data of the single comment with the commentID. Although I expected that the following way should work:
https://graph.facebook.com/111122223333
it just gave me "False". I can retrieve all comments attached to that page using:
https://graph.facebook.com/comments?ids=http://siteaddress.com/page.htm
But, what is the right way to retrieve the single comment data just created using the commentID?
I was also facing the same problem... so what i did was , I queried the last posted comment or reply from the fb comments table using fql. Here I sort the comments by time in descending order and pick the top one. though one may think that if two comments are posted at same time, it may cause ambiguity, But in my case i tried and tested it invoving more than 2 users but i always got the expected result.
FB.Event.subscribe('comment.create', function(response) {
FB.api({
method: 'fql.query',
query: "select post_fbid, fromid, object_id, text, time from comment where object_id in (select comments_fbid from link_stat where url ='URL_OF_THE_COMMENT_BOX') or object_id in (select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ='URL_OF_THE_COMMENT_BOX')) order by time desc limit 1"
},
function(response) {
var feed = response[0];
alert(feed.text)
}
);
});
Hi if you are having comment id then why you dont use FQL and query to Comment Table to get all comment related data?
I am having this same problem. What seems to be happening is that the commentID and parentCommentID are actually just returning the unique ID of that page, and not a unique ID for the comment itself.
The unique ID for an individual comment is the unique ID of the page (that is, the value currently being returned as "commentID") with an underscore followed by another number (8 digits long in the tests I've done). You can look this up directly from the graph the response provided it.
I have logged a bug with Facebook to hopefully get this fixed! Bug at address below:
http://bugs.developers.facebook.net/show_bug.cgi?id=16535
Hm. I can retreive comment data by id (id format like this: 1234567890123456_12345678). Ids i retreive from url like this:
https://graph.facebook.com/comments?ids={$url}
I combined a couple approaches (including from Charsee).
// this query takes a "commentID" and "href". The commentID is returned on comment.create "response" object
// this code requires an escape function "addslashes(str)" to handle single quotes.
var query = "SELECT text, fromid FROM comment WHERE post_fbid='"+addslashes(commentID)+"' AND ( object_id in (select comments_fbid from link_stat where url ='"+addslashes(href)+"') or object_id in (select post_fbid from comment where object_id in (select comments_fbid from link_stat where url ='"+addslashes(href)+"')))";

Facebook Comments Count

I am trying to write a Facebook query that will return all comments posted by a user to his friends,
however I can't seem to find the correct schema. Its as if there are no 'indexable' fields to build this.
Any suggestions please?
With thanks,
Wineshtain
The indirect path for stream comments would be something like
select * from comments where fromid = <my_id> and object_id in (
select post_id from stream where sourceid in (
select uid1 from friend where uid2 = <my_id> ) )
for photos, substitute the middle query with
SELECT pid FROM photo WHERE aid IN ( SELECT aid FROM album WHERE owner IN ( ...
Unfortunately the security settings may restrict the querying your friends wall posts and photos.
I don't believe you can accomplish this in a direct manner as you describe. FQL tables are generally only indexed on a limited criteria (for performance reasons I'm sure). In the case of the Comments FQL Table, you can only select comments via a post ID or an xid.
Unfortunately, this means that you have to know the objects that a user has commented on before you can get the comments for it. You would have to have previously selected all the posts, photos, etc. that you wished to get the comments for before you could retrieve them.