我使用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实现这个目的?