Soundcloud API throttling.

半世苍凉 提交于 2019-12-01 05:31:17

问题


I am currently experimenting with the SoundCloud API, and have noticed that my GET requests for the /tracks resource never return more than 200 results at one time. A few questions about this:

  1. Is this limit intentional?
  2. Is there a way to increase this limit?
  3. If not, what is the best way to work around this? is there an easy way to get some sort of continuation/pagination parameter, so that if more than 200 tracks match my query, I can issue a new query to get the next set of matches?

回答1:


Pagination from the API documentation. Try passing in limit and offset parameters. The max for limit is 200 and the max for offset is 8000.



来源:https://stackoverflow.com/questions/9668311/soundcloud-api-throttling

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!