使用 google 地理定位 api 使用 python 库 google 地图使用邮政编码查找位置坐标
Find the location coordinates using zipcode in google geolocation api using python library googlemaps
我正在使用以下代码通过从用户那里获取邮政编码来查找位置坐标,并希望向该邮政编码推荐附近的商店。
出现以下错误:
"REQUEST_DENIED
The provided API key is invalid."
我运行的python代码如下,试过在不同的网站上搜索仍然没有成功。
zipcode = 411018
api_key = "here i will input my api key"
url = "https://maps.googleapis.com/maps/api/geocode/xml?address="+str(zipcode)+"&key="+api_key
res = requests.get(url)
print(res.text)
邮政编码 411018 应导致输出为“18.635431,73.812498”,但它会抛出如上所示的错误。
我不知道你的密钥字符串是什么样的,但它可能需要 URI 编码,因为它包含保留字符? IE。您不能简单地按原样附加到 URL。
我正在使用以下代码通过从用户那里获取邮政编码来查找位置坐标,并希望向该邮政编码推荐附近的商店。
出现以下错误:
"REQUEST_DENIED
The provided API key is invalid."
我运行的python代码如下,试过在不同的网站上搜索仍然没有成功。
zipcode = 411018
api_key = "here i will input my api key"
url = "https://maps.googleapis.com/maps/api/geocode/xml?address="+str(zipcode)+"&key="+api_key
res = requests.get(url)
print(res.text)
邮政编码 411018 应导致输出为“18.635431,73.812498”,但它会抛出如上所示的错误。
我不知道你的密钥字符串是什么样的,但它可能需要 URI 编码,因为它包含保留字符? IE。您不能简单地按原样附加到 URL。