We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99a9baf commit 677e1caCopy full SHA for 677e1ca
content/academy/api_scraping/general_api_scraping/handling_pagination.md
@@ -157,7 +157,7 @@ const scrape100Items = async () => {
157
158
// make the paginated request and push its results
159
// into the in-memory "items" array
160
- const res = await gotScraping(nextURL.toString());
+ const res = await gotScraping(nextURL);
161
const json = JSON.parse(res.body);
162
items.push(json.collection);
163
0 commit comments