Facebook API获取每个帖子的帖子内容c#

时间:2016-04-19 09:08:48

标签: c# facebook facebook-graph-api post

我有一个facebook帖子列表,我需要获取内容。 例如。 :

https://www.facebook.com/92979593115/posts/10153657643923116
https://www.facebook.com/92979593115/posts/10153659926668116
https://www.facebook.com/92979593115/posts/10153701531073116

我只需要每个帖子的内容(正文)。就是这样。我在fb上创建了我的应用程序并且有ID和秘密,但每次我收到Bad Request。

string oauthUrl = string.Format("https://graph.facebook.com/oauth/access_token?type=client_cred&client_id={0}&client_secret={1}",      "my_client_id", "my_secret");

string accessToken = client.DownloadString(oauthUrl).Split('=')[1];

string url = string.Format("https://graph.facebook.com/10153657643923116/posts?access_token={0} ", accessToken);

罗汉。

1 个答案:

答案 0 :(得分:0)