如何从rss feed而不是最新帖子获取所有帖子?
答
这通常是不可能的,因为一个RSS阅读器只显示当前什么是Feed中的你只能像当时公布的一样多。找到支持RSS提要项目并直接从那里下载的数据集是完全不同的,而且有时是可能的。
答
使用c#你可以做到这一点,但它会返回未使用Rss格式的Json。 你必须做的就像
string AccessToken="Your Access Token e.g KIMJSLIFJEILMFSLJFSDIIIIFLDFJSLFJLSFSLFJSLJF";
var client= new facebookclient(AccessToken);
dynamic allFeeds=client.Get("me/feed");//OR "me/feeds
foreach (var uniquefeed in (JsonArray)allFeeds["data"])
{
string feedids = (string)(((JsonObject)uniquefeed)["id"]);
//Write more stuff here what you want.
}