1

我正在尝试使用 Google 距离矩阵 API 获取两个位置之间的距离。我也在使用签名来签署我对 Google 的请求。

这是我的请求 URI:

https://maps.googleapis.com/maps/api/distancematrix/json?origins=Vancouver+BC|Seattle&destinations=San+Francisco|Victoria+BC&mode=driving&departure_time=1435234502&client=my-client-id&signature=my-obtained-signature

我在 UTC 中使用 epochtime 来发送 Google API 文档中提到的请求。但我收到了如下所述的回复:

{ 
   "destination_addresses" : [],
   "origin_addresses" : [], 
   "rows" : [], 
   "status" : "INVALID_REQUEST" 
}

4

1 回答 1

1

您需要 API KEY 才能调用 Google 地图服务

https://developers.google.com/maps/documentation/javascript/get-api-key?hl=En

于 2017-04-11T14:22:28.423 回答