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

时间:2015-08-24 06:35:28

标签: c# soql socrata

我使用http restcall

从私人社交数据集中获取记录
string searchCondition = "resource/xxxx-xxxx.json?$where=column1='something'AND column2='something'&$limit=25000";
 response = client.GetAsync(searchCondition).Result;

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

0 个答案:

没有答案