I am receiving the following error when running a script generating many (approx. 80) choropleths using Plotly in short time
Error in process.image(append_class(resp, "image")) :
Too Many Requests (RFC 6585) (HTTP 429).
Has anyone encountered this error before? I think it might be a response from their web server (e.g. some anti-DOS filter). Therefore I was thinking of adding some execution pauses in between the plotly()
-calls, something like the following:
plot_ly(...)
Sys.sleep(5)
plot_ly(...)
...
Do you have any advice how I could bypass this error message?