Dj-Corps / gwt-oauth2

Automatically exported from code.google.com/p/gwt-oauth2
Apache License 2.0
0 stars 0 forks source link

Sample for using google reverse geocode #52

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
I'm not sure what you're asking for, and your code doesn't seem to be related 
to this project at all. Please clarify.

Original comment by jasonhall@google.com on 5 Apr 2013 at 1:57