我正在尝试使用来自 Google frmo 的 Places API 一个 node.js 服务器
这是我要访问的网址。
哪个是处理来自服务器的请求的最佳方式?
谢谢!
我正在尝试使用来自 Google frmo 的 Places API 一个 node.js 服务器
这是我要访问的网址。
哪个是处理来自服务器的请求的最佳方式?
谢谢!
const https = require("https");
https.get("https://maps.googleapis.com/maps/api/place/textsearch/json?query=parkings+in+Madrid,Spain&sensor=true&key=key", function(res) {
console.log("Got response: " + res.statusCode);
}).on('error', function(e) {
console.log("Got error: " + e.message);
});