I have a python script to calculate driving distance between two points. Here's my my API call. I did not use any API Key.
urlGoogle = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=" + origZip + "&destinations=" + destZip + "&mode=driving&units=imperial&language=en-EN"
Once while testing with lots of data I got an error of exceeding the limit. My question is how does Google track/monitor my usage without a key.
By your server's ip address. Which could be problematic if you are on a shared server.
I have a python script to calculate driving distance between two points. Here's my API call. I did not use any API Key.
urlGoogle = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=" + origZip + "&destinations=" + destZip + "&mode=driving&units=imperial&language=en-EN"
Once while testing with lots of data I got an error of exceeding the limit. My question is how does Google track/monitor my usage without a key.
I have a python script to calculate driving distance between two points. Here's my API call. I did not use any API Key.
urlGoogle = "https://maps.googleapis.com/maps/api/distancematrix/json?origins=" + origZip + "&destinations=" + destZip + "&mode=driving&units=imperial&language=en-EN"
Once while testing with lots of data I got an error for exceeding the limit. My question is how does Google track/monitor my usage without a key.