Nth
03/01/2025, 3:58 PMHall
03/01/2025, 3:58 PMPepa J
03/03/2025, 3:02 PMenqueueLinks
?Nth
03/03/2025, 7:54 PMRunning request handler for ${request.url}
);
await enqueueLinks({
strategy: 'same-domain',
globs: ['http?(s)://example.com/**', 'http?(s)://**.example.com/**'],
transformRequestFunction: (req) => {
// Skip pdf files
if (request.url.endsWith('.pdf')) {
log.warning(* Skipping (${req.url}) - PDF
);
return false;
}
return req;
},
});
});`ApifyBot
03/03/2025, 7:54 PMNth
03/03/2025, 7:58 PMPepa J
03/04/2025, 8:49 AM