My app uses the Google Geocoding API to get an address from a Lat/Long.
This is the sort of thing that it uses:
NB The number of requests made by App is fairly low and not above the free amount allowed, so I don't have a payment account set up.
I've recently spotted this warning in the Google Dev Console:
Apparently if I were to use a Service Account this problem would be reduced.
Has anyone else managed to solve this issue?
This is the sort of thing that it uses:
B4X:
Dim j As HttpJob
j.Initialize("GetAddress", Me)
j.Download2("https://maps.googleapis.com/maps/api/geocode/json", Array As String( _
"latlng", lat & "," & lon, _
"result_type","street_address|locality", _
"key",API_key))
NB The number of requests made by App is fairly low and not above the free amount allowed, so I don't have a payment account set up.
I've recently spotted this warning in the Google Dev Console:
Your app contains exposed Google Cloud Platform (GCP) API keys. Please see this Google Help Centre article for details.
Apparently if I were to use a Service Account this problem would be reduced.
Has anyone else managed to solve this issue?