2013-03-13 43 views
1

我使用的是谷歌Places API的使用下列搜索字符串谷歌Places API所缺少的ID和全球化志願服務青年響應

https://maps.googleapis.com/maps/api/place/queryautocomplete/json?key=AIzaSyDryrzCJoKA-XeN-f3Q2KDPdJHd27Nl7CoM&sensor=true&input=bri 

結果回來是這樣的:

{ 
    "predictions" : [ 
     { 
     "description" : "Bristol, United Kingdom", 
     "matched_substrings" : [ 
      { 
       "length" : 3, 
       "offset" : 0 
      } 
     ], 
     "terms" : [ 
      { 
       "offset" : 0, 
       "value" : "Bristol" 
      }, 
      { 
       "offset" : 9, 
       "value" : "United Kingdom" 
      } 
     ] 
     } 
    ... etc etc 
    ], 
    "status" : "OK" 
} 

我看不到對於任何返回的預測結果,需要一個'id'或'參考'屬性,然後才能從Google Places詳細信息API請求完整詳細信息。

他們的文檔說我應該看到這兩個項目。 https://developers.google.com/places/documentation/autocomplete

任何人知道我做錯了什麼?

回答

相關問題