我正在使用 Instasharp,我需要获取标记为“汽车”的分页图像集:
String clientId = "xyz";
String clientSecret = "xyz";
var config = new InstagramConfig(clientId, clientSecret);
var query = new InstaSharp.Endpoints.Tags(config);
var reply1 = query.Recent("Car", null, null, 2);
var reply2 = query.RecentMultiplePages("Car", null, null, 20, null);
当我检查reply2 时,我看到加载了600 个项目并且PageCount 等于20。
而且我还得到一个 PaginationNextMaxId ..
关键是我确实想加载所有项目。
我只需要加载 20 个并且有足够的信息来加载接下来的 20 个。
有谁知道我该怎么做?
更新
我尝试了以下方法:
var reply1NextPage = query.Recent("Car", reply1.Result.Pagination.NextMinId, reply1.Result.Pagination.NextMaxId, 2);
但结果它为空......