using https://forge.autodesk.com/en/docs/data/v2/reference/http/buckets-GET/ , I can set the limit as 100 and withdraw bucket objects. But how can I get all the bucket objects in a bucket key?
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("https://developer.api.autodesk.com/oss/v2/buckets/mybucketkey/objects?limit=100");
request.Method = "Get";
request.KeepAlive = true;
request.ContentType = "appication/json";
request.Headers.Add("Authorization", "Bearer my token" );
HttpWebResponse response = (HttpWebResponse)request.GetResponse();
string myResponse = "";
using (System.IO.StreamReader sr = new System.IO.StreamReader(response.GetResponseStream()))
{
myResponse = sr.ReadToEnd();
}
I can list 100 in this way. But I couldn't find how to list them all. Could it be related to the startAt parameter?