I'm trying use the facebook api to get the last posts from the newsfeed of a user along with the comments attached to it. It's easy to get information about those comments such as the text, the actor id, etc... from a query to the STREAM table,
var query = FB.Data.query('SELECT post_id, actor_id, app_data, message, attribution, created_time, comments FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid={0} AND type="newsfeed") LIMIT 20', response.id);
but it doesn't seem to include the timestamp at which those comments were posted (so I can get the timestamp for the post itself with 'created_time', but not for the comments attached to it). Does anybody know a way to do this? Help would be much appreciated. Thanks a lot.

