multiple-amethyst•4y ago
how to disable duplicates check
This is my current code
5 Replies
add your own https://crawlee.dev/api/core/class/Request#uniqueKey
multiple-amethystOP•4y 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! 🎉
ambitious-aqua•4y 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.multiple-amethystOP•4y ago
thank you