Which OAuth2 provider or API service? Google Maps API v3
External references, such as API reference guide?
Please provide any additional information below.
Using PL/SQL to generate a call to Google Reverse Geocode API.
The current PL/SQL code is something like this:
l_url := 'http://maps.google.com/maps/api/geocode/json?latlng='||l_address||'&sensor=false';
req := utl_http.begin_request(l_url);
resp := utl_http.get_response(req);
utl_http.read_text(resp, value);
utl_http.end_response(resp);
I need to include the API key in order for my access to be billed when I go
over 25,000 requests/day
Original issue reported on code.google.com by gpstrack...@gmail.com on 16 Aug 2012 at 7:44
Original issue reported on code.google.com by
gpstrack...@gmail.com
on 16 Aug 2012 at 7:44