What is the user limit for the Google Street View Image API?

I am working on a web application that uses the Google Street View Image Image API to load many street images (using JavaScript). While I can download a large amount, it seems to have disabled me and returned 403 errors if I exceed some speed (I do not exceed the total distribution of 1000).

I constantly tried to slow down the download speed of images, but I can’t find a sweet spot by which the API will allow me to download continuously at that speed. I checked the documentation and does not give a description of the speed.

In addition, assuming that such a speed exists, is it calculated for each user (by IP) or from my API key?

+4
source share
3 answers

You notice that problems start at 10 seconds / seconds.

For business users, there is a limit: All web services: speed limit of 10 requests per second.

Suppose you don’t get lower rates than free users when you pay for the service.

I assume this limit is only for business users, as it also guarantees 10 available queries per second.

+2
source

Google does not document the exact rate, but it is distributed throughout the day. The speed is calculated based on each IP address.

Do you think you are using the JavaScript API? It may not work for you, but it will not be quoted in the same way.

+1
source

I had the same problem and I changed the speed to 1 image every 1.5 seconds and still get locked images after minutes of use.

I changed the user speed through the API console and used my API key at the url, but that didn't work

Now I switched to the interactive image of the streets, since this limit did not fall

0
source

Source: https://habr.com/ru/post/1399576/


All Articles