我正在使用地理定位,我在客户端处理所有内容,现在我想从
处理目前正在使用它;
var url = "youtube.com",
options = {
key: API_KEY,
video: "vid_id"
};
$.get(url, options, function(data) {
console.log(data)
})
我想将它与nodeJS HTTPS一起使用,所以我试过了;
var https = require("https"),
url = "youtube.com",
options = {
key: API_KEY,
video: "vid_id"
};
https.get(url, options, function(data) {
console.log(data)
})
但是我无法让它发挥作用我希望有人可以转换它。
答案 0 :(得分:1)
尝试将request
模块用于node.js.通过运行安装它:
npm install request
。
var request = require('request');
request(`youtube.com/?key=${key}&video=${video_id}`, function (error, response, body) {
console.log('error:', error); // Print the error if one occurred
console.log('body:', body); // Print body of the response.
});