Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can i get a full length posting/comment? With

SELECT post_id,  message, message_tags, description, description_tags FROM stream WHERE source_id = me()

i m getting a "cut" version of my posted comments (in the message field).

Using graph with the post_id brings me still the same trimmed message as result. Is there a other "table" to query comments by post_id?

An example can be found below.

Best regards.

share|improve this question

1 Answer

You need to get the comments field

SELECT post_id, comments FROM stream WHERE source_id = me()

You should read FQL - Stream documentation page

share|improve this answer
Maybe i wasn't clear enough. Here an example: i leave a comment "bla bla bla bla bla bla bla bla bla bla this is the long comment which i want to fetch later" on a fanpage. The description field in my query gives me a result like 'bla bla...' on fanpage". Your query results are only comments to my postings - so comments to the blabla-post, a level to deep ;) – inselberg Mar 2 at 9:10
@inselberg Well your original question was "How can i get a full length comment?" can you give a post ID to investigate ? you wrote "An example can be found below." with no example – Roni Mar 2 at 10:38
Below in the comments. Maybe it was a confusing choice to name that what i m looking for a "comment". As you can see in post_id 1251817337_10200582728151293, the story field contains not everything that i wrote and "this" is what i need to query. (btw i know why a reduced text is stored in the "story" or/and "description" fields.) – inselberg Mar 2 at 13:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.