unwilling-turquoise•3y ago
how to disable duplicates check
This is my current code
5 Replies
add your own https://crawlee.dev/api/core/class/Request#uniqueKey
unwilling-turquoiseOP•3y ago
is the only way? if possible, can you tell me how to implement this https://crawlee.dev/api/core/interface/RequestListOptions#keepDuplicateUrls
@max just advanced to level 1! Thanks for your contributions! 🎉
metropolitan-bronze•3y ago
On each request, give it a
uniqueKey
that is unqiue. Or, if the payloads/headers are different for each request but the URL is the same, you can use the useExtendedUniqueKey
option set to true
. These options both go into RequestOptions
where you configure the url
, label
, headers
, etc.unwilling-turquoiseOP•3y ago
thank you