Closed assassin316 closed 8 years ago
The error message says that query options can only be applied to collections. You requested Items[id]
which will return one item. Were you trying to get the children of that item? If so, try this request:
var item = await _client.Drive
.Items[id]
.Children
.Request(options)
.Expand(expandString)
.GetAsync(ct);
Works like a charm!! :) Thanks.
I have the following code in which I want to get 20 child items at a time:
But I receive the following error in Fiddler:
What am I doing wrong?