使用电子表格中的API密钥进行身份验证

时间:2018-10-15 07:27:26

标签: google-maps authentication google-apps-script google-sheets

我在Google表格中有代码,该代码使用Google Maps API计算两个位置之间的距离。 我有一个Google API密钥,但不知道如何将其插入我的代码中进行身份验证。我没有客户编号。 有人可以帮忙吗?

function DISTANCE(origin, destination) {
  var directions = Maps.newDirectionFinder()
    .setOrigin(origin)
    .setDestination(destination)
    .getDirections();
  return directions.routes[0].legs[0].distance.value;
}

0 个答案:

没有答案