0
웹 API를 사용하여 재생 목록에 노래를 나열하려고하는데 108 곡 (?)을 얻습니다. 재생 목록에 약 100 개의 제한이 있습니다.재생 목록 한도 지정 100
debian:~/user$ curl -Ss -H "Authorization: Bearer atkn" https://api.spotify.com/v1/users/bugenwilla/playlists|jq -r '.items[]|select(.name=="myplaylist")|[.tracks.total, .id]'
[
1543,
"playlistid"
]
debian:~/user$ curl -Ss -H "Authorization: Bearer atkn" https://api.spotify.com/v1/users/username/playlists/playlistid/tracks | jq -r '.items[] | .track.album.artists[].name' | wc -l
108
debian:~/user$ curl -Ss -H "Authorization: Bearer atkn" https://api.spotify.com/v1/users/username/playlists/playlistid/tracks | jq -r '.limit, .total'
100
1543
1) 왜 108 곡을 보여 주며 100을 제한하지 않습니까? 2) 제한을 변경하는 방법이 있습니까?/재생 목록에있는 1543 곡을 모두 표시 하시겠습니까?