Open
Description
I successfully downloaded the book_urls.txt, but when I run download.go, I always receive a
"Too Many Requests" error in the authentication step:
if err != nil {
log.Fatal(err)
}
Changing my IP address didn't help. I also read that this could be due to too high paralleiism, so I limited the colly collector as follows:
c.Limit(&colly.LimitRule{
2 * time.Second,
Parallelism: 1,
})
but it didn't have any effect.
I'm using go 1.14
I have also waited more than 24 hours between two tries.
Any help would be appreciated.
Metadata
Metadata
Assignees
Labels
No labels