mirror of
https://github.com/Sarsoo/Spotify.NET.git
synced 2024-12-23 14:46:26 +00:00
Add note about not including "next" field when limiting fields and using pagination (#962)
This commit is contained in:
parent
7bdaf060de
commit
9cbd5f280e
@ -54,3 +54,8 @@ By requesting just the track name from the items, we don't have any kind of type
|
|||||||
playlistGetItemsRequest.Fields.Add("items(track(name,type))");
|
playlistGetItemsRequest.Fields.Add("items(track(name,type))");
|
||||||
```
|
```
|
||||||
|
|
||||||
|
If you're paginating a request with a subset of fields and you don't include the field `next`, we assume there is only one page and your results will be limited. To fix this, you must include `next` as one of the fields:
|
||||||
|
|
||||||
|
```csharp
|
||||||
|
playlistGetItemsRequest.Fields.Add("next, items(track(name,type))");
|
||||||
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user