sI saw this code should help (this is in Ruby):
# start paging through results, 100 at a time tracks = client.get('/tracks', :order => 'created_at', :limit => page_size, :linked_partitioning => 1) tracks.each { |t| puts t.title }
However, the first result set will show, and I will see "next_href" at the end of the answer, but what should you do to show the next result set?
source share