有没有办法使用facebook c#sdk获取有关帖子的信息?我有帖子ID,所以我试图使用它来查询Facebook服务器。
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");
我尝试过使用c#sdk获取
答案 0 :(得分:2)
您可以通过图表API并传递访问令牌 //注意:将 ur_postid 替换为实际的postid,将 ur_accesstoken 替换为您的facebook访问令牌
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");
//您可以使用 graph api explorer 进行测试