0
import httplib
try:
    import json
except ImportError:
    import simplejson as json

path = ('/maps/geo?q=207+N.+Defiance+St%2C+Archbold%2C+OH''&output=json&oe=utf8')

connection = httplib.HTTPConnection('maps.google.com')
connection.request('GET', path)

rawreply = connection.getresponse().read()
reply = json.loads(rawreply)
print(reply)

在执行它时,我没有得到想要的输出,而是得到:

{u'Status': {u'code': 610, u'request': u'geocode'}}

如果有人知道解决方案,请帮助我。

4

1 回答 1

1

您需要从 API 的第 2 版迁移到第 3 版。您使用的旧 API 已于 3 月停用。请参阅此页面了解如何升级。

于 2013-07-29T20:26:15.037 回答