Rss似乎只有最新的n个帖子,我只是想知道无论如何都要获得包括历史帖子在内的所有帖子。感谢
杰夫张答案 0 :(得分:0)
这通常不可能,因为RSS阅读器仅显示Feed中当前的内容。你只能拉当时公布的数量。找到支持RSS提要项目并直接从那里下载的数据集完全可以做其他事情,有时也是可能的。
答案 1 :(得分:0)
使用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.
}