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.

I've tried the following:

This is the post I'm trying to retrieve : http://www.facebook.com/TeapotParty/posts/134801493258490

var fbc = new FacebookClient(accessToken);
dynamic post = fbc.Get("/TeapotParty/posts/134854426586530");

and

dynamic streams = fbc.Query("select text from comment  where post_id  = " + 134801493258490);
share|improve this question

1 Answer

up vote 0 down vote accepted

Figured it out, but need to be logged in as that user

dynamic stream = fbc.Query("select post_id from stream where permalink  = 'http://www.facebook.com/TeapotParty/posts/134801493258490'");"select post_id from stream where permalink  = 'http://www.facebook.com/TeapotParty/posts/134801493258490'");
share|improve this answer

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.