Google JSON API是Google提供的一種接口服務,允許開發者從Google的服務器獲取JSON格式的數據。通過JSON API,開發者可以輕松地訪問Google的各種服務,如Google地圖、Google AdWords等。
{ "status": "OK", "results": [ { "formatted_address": "1600 Amphitheatre Pkwy, Mountain View, CA 94043, USA", "geometry": { "location": { "lat": 37.4224764, "lng": -122.0842499 }, "viewport": { "northeast": { "lat": 37.4237773802915, "lng": -122.0829009197085 }, "southwest": { "lat": 37.42107941970851, "lng": -122.0855988802915 } } }, "place_id": "ChIJ2eUgeAK6j4ARbn5u_wAGqWA", "types": [ "street_address" ] } ] }
上面的代碼展示了向Google Places API發送查詢請求后,API返回的JSON格式數據。其中,"status"表示查詢結果狀態;"formatted_address"表示查詢的地址;"geometry"表示查詢結果的位置信息,包括經緯度等;"place_id"是Google Places API用于標識訪問地點的唯一ID。
使用Google JSON API,開發者可以快速獲取Google服務的數據,方便實現Web應用程序的數據展示和應用。