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.

Is there any way to get information about a post using the facebook c# sdk? I have the post id so I am trying to query the facebook server using that.

string test = VendorShop.Services.Sess.getQueryString("signed_request");
var signed_request_obj  = testClient.ParseSignedRequest( appSecret, test);
var obj = testClient.Get(
    "https://developers.facebook.com/tools/debug/og/action?q=330203520408060");

I have tried a Get using the c# sdk

share|improve this question

1 Answer

up vote 2 down vote accepted

you can get through graph api and passing an access token
// Note :replace ur_postid with the actual postid and ur_accesstoken with ur facebook access token

string test = VendorShop.Services.Sess.getQueryString("signed_request");
var signed_request_obj  = testClient.ParseSignedRequest( appSecret, test);
var obj = testClient.Get(
"https://graph.facebook.com/ur_postid?access_token=ur_accesstoken");

// you can use graph api explorer to test it

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.