blinkist-m4a-downloader icon indicating copy to clipboard operation
blinkist-m4a-downloader copied to clipboard

Too Many Requests

Open lenngro opened this issue 5 years ago • 5 comments

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.

lenngro avatar Apr 05 '20 08:04 lenngro

Same as #https://github.com/luckylittle/blinkist-m4a-downloader/issues/10

lenngro avatar Apr 05 '20 08:04 lenngro

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).

zanymuzik avatar Apr 09 '20 05:04 zanymuzik

I'm having the same issue here

Any headway?

dnharry avatar Apr 24 '20 14:04 dnharry

Same Problem. Seems like the API has changed...

M4rcDev avatar Apr 30 '20 10:04 M4rcDev

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

JacobHepworth avatar Jul 11 '20 20:07 JacobHepworth