如何使用 Http rest 调用从 socrata 获取超过 20000 条记录

How to fetch over 20000 records from socrata using Http rest call

我正在使用 http restcall 从私有 socrata 数据集中获取记录

string searchCondition = "resource/xxxx-xxxx.json?$where=column1='something'AND column2='something'&$limit=25000";
 response = client.GetAsync(searchCondition).Result;

问题是我无法获取超过 20000 的数据,它显示了一些错误。我了解到使用最新的 'sodaclient' 最多可以获取 50000 条记录。有什么办法可以使用 http restcall 来实现这一点?

没关系,我忘了给 'client' 添加更高的超时值。由于它,该操作之前无法完成。