在 Apps 脚本中使用撇号对位置进行地理编码会产生 'Action not allowed' 错误
Geocoding a location with a apostrophe in Apps Script gives an 'Action not allowed' error
我在 Google Apps Script web app 中有以下代码:
Maps.newGeocoder().geocode("Tyson's Corner, VA");
是的,里面有错字。我总是忘记这个地方的正确名称。
此代码使用 Apps Script Maps Geocoder to determine the location of the address.
当我 运行 这个最小代码时,Apps 脚本会引发错误:
Action not allowed
当我从地址中删除 '
时,调用完成并且 returns 正确的位置。
有谁知道这是否是预期的行为(我在文档中找不到)?
我已经尝试了您的用例并遇到了同样的错误,我认为存在针对此场景的现有 bug report,并且仍在调查中。您可能希望关注它以了解有关任何解决方案或解决方法的更新(当前删除“'
”将使这项工作生效,您已经这样做了)。
我在 Google Apps Script web app 中有以下代码:
Maps.newGeocoder().geocode("Tyson's Corner, VA");
是的,里面有错字。我总是忘记这个地方的正确名称。
此代码使用 Apps Script Maps Geocoder to determine the location of the address.
当我 运行 这个最小代码时,Apps 脚本会引发错误:
Action not allowed
当我从地址中删除 '
时,调用完成并且 returns 正确的位置。
有谁知道这是否是预期的行为(我在文档中找不到)?
我已经尝试了您的用例并遇到了同样的错误,我认为存在针对此场景的现有 bug report,并且仍在调查中。您可能希望关注它以了解有关任何解决方案或解决方法的更新(当前删除“'
”将使这项工作生效,您已经这样做了)。