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
Hey, sorry if this is documented somewhere, but what is the intended methodology for paging through tracks in a playlist?
The following approaches don't seem to work...
Hypem.user(USER_NAME).loved_playlist.page(1).tracks.first.title=>"first page first track title"Hypem.user(USER_NAME).loved_playlist.page(2).tracks.first.title=>"first page first track title"# expecting "second page first track title"
user=Hypem.user(USER_NAME)playlist=user.loved_playlistpage=playlist.page(1)tracks=page.trackstracks.eachdo |track|
# do some stuffendpage=page.next_page=>nil
user=Hypem.user(USER_NAME)playlist=user.loved_playlistpage=playlist.page(1)tracks=page.trackstracks.eachdo |track|
# do some stuffendp2=playlist.next_pagep2.tracks.first.title=>"first page first track title"# expecting "second page first track title"
The text was updated successfully, but these errors were encountered:
Hey, sorry if this is documented somewhere, but what is the intended methodology for paging through tracks in a playlist?
The following approaches don't seem to work...
The text was updated successfully, but these errors were encountered: