Apify handlePageFunction should skip if content-type is not html

744 Views Asked by At

I have the problem that the Apify.utils.enqueueLinks function adds also downloads or image links to the requestQueue.

Actually i tried to solve it this way:

handlePageFunction: async({
        request, response, page
    }) => {
        await page.waitFor(settings.waitForPageload)
        console.log(`Get Data from:: ${request.url}`)
        if(response.headers()['content-type'].includes('html')) {
          ...do all stuff here
        }

What would be a better solution for that?

0

There are 0 best solutions below