You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@select I implemented pagination in another project of mine, it's really easy to do: when you receive the first 50 results they also come with a token for obtaining the next results (when available). So you check for presence of this token, and if it's there, then at the end of your function for requesting playlist videos, you call the function again recursively, this time providing the token for the next page of results. This way the function runs until it obtains all playlist videos, and will stop as soon as the token is no longer received.
for now only the first 50 items are added
The text was updated successfully, but these errors were encountered: