gpt4 book ai didi

node.js - 如何使用 SailsJS 调用 Google API

转载 作者:搜寻专家 更新时间:2023-11-01 00:23:25 25 4
gpt4 key购买 nike

我想使用 GMap API 计算 2 个坐标之间的距离。无论如何,我正在寻找从 URL 捕获返回数据

https://maps.googleapis.com/maps/api/distancematrix/json?origins=Seattle&destinations=San+Francisco&key={{myKey}}

我试图搜索但没有任何我想要的东西。请帮助我或给我关键字。非常感谢!

最佳答案

可以用超赞的request包裹

来自它的文档:

Request 旨在成为进行 http 调用的最简单方法。它支持 HTTPS 并默认遵循重定向。

var request = require('request');
request('http://www.google.com', function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body) // Show the HTML for the Google homepage.
}
})

希望对您有所帮助!

关于node.js - 如何使用 SailsJS 调用 Google API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32986179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com