我正在使用紐約時間API獲取暢銷書籍數據。但每次我得到20的結果,所以如何獲得超過20本書的結果。如何從紐約時間API獲得超過20本書的結果?
網址是:https://api.nytimes.com/svc/books/v3/lists/best-sellers/history.json?api-key=test 此網址顯示num_result = 29851,所以如何獲取這些所有JSON數據。
我正在使用紐約時間API獲取暢銷書籍數據。但每次我得到20的結果,所以如何獲得超過20本書的結果。如何從紐約時間API獲得超過20本書的結果?
網址是:https://api.nytimes.com/svc/books/v3/lists/best-sellers/history.json?api-key=test 此網址顯示num_result = 29851,所以如何獲取這些所有JSON數據。
使用offset
參數爲20
https://api.nytimes.com/svc/books/v3/lists/best-sellers/history.json?api-key=test&offset=40
非常感謝你,我得到了超過20個結果@pratZ –
我已經用實際API密鑰,但得到相同的結果的倍數。其實我得到前20結果比如何得到下20結果@ user13 –