1

我遇到了 Python googlemaps 的问题。我已经在 API 控制台中为服务器应用程序生成了 api-key,但是当我运行这部分代码时,我仍然收到错误 610:

from googlemaps import GoogleMaps

....

gmap = GoogleMaps(maps_api_key)
my_address = gmap.latlng_to_address(lat, lng)

错误:

raise GoogleMapsError(status_code, url, response)
GoogleMapsError: Error 610: G_GEO_BAD_KEY

有什么问题?

4

1 回答 1

1

尽管 Google 弃用了带有 googlemaps 的 V2 调用(这就是您看到中断调用的原因),但他们最近才宣布他们将给予开发人员六个月的延期(直到 2013 年 9 月 8 日),以便从 V2 迁移到 V3 API . 有关详细信息,请参阅地理编码 API V2 更新。

同时,查看 pygeocoder 作为可能的 Python V3 解决方案。

于 2013-07-26T08:11:13.503 回答