blinkist-m4a-downloader
blinkist-m4a-downloader copied to clipboard
Too Many Requests
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.
Same as #https://github.com/luckylittle/blinkist-m4a-downloader/issues/10
I have been seeing the same thing. wondering if this has anything to do with the captcha used for signing into blinkist now (which wasn't there earlier, perhaps).
I'm having the same issue here
Any headway?
Same Problem. Seems like the API has changed...
I fixed this bug but it seems something else is wrong now.
The "Too many requests" fix is at https://github.com/luckylittle/blinkist-m4a-downloader/pull/14/commits/2a37bd52198e59081b06d9f6915c1d1879efce4d
The new issue can be seen here. https://github.com/luckylittle/blinkist-m4a-downloader/issues/15