5 Replies
old-apricot•3y ago
add your own https://crawlee.dev/api/core/class/Request#uniqueKey
exotic-emeraldOP•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! 🎉
other-emerald•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.exotic-emeraldOP•3y ago
thank you