gpt4 book ai didi

httpwebrequest - 如何向 3rd 方 API 编写 Node.js 请求?

转载 作者:IT老高 更新时间:2023-10-28 23:09:44 24 4
gpt4 key购买 nike

有没有人举例说明 API 响应从 http.request() 传回给第 3 方并返回到我的 clientSever 并写入客户端浏览器?

我一直陷入我确信是简单的逻辑。我在阅读文档时使用 express,它似乎没有为此提供抽象。

谢谢

最佳答案

请注意,这里的答案有点过时了——您会收到一条已弃用的警告。 2013 年的等价物可能是:

app.get('/log/goal', function(req, res){
var options = {
host : 'www.example.com',
path : '/api/action/param1/value1/param2/value2',
port : 80,
method : 'GET'
}

var request = http.request(options, function(response){
var body = ""
response.on('data', function(data) {
body += data;
});
response.on('end', function() {
res.send(JSON.parse(body));
});
});
request.on('error', function(e) {
console.log('Problem with request: ' + e.message);
});
request.end();
});

我也会推荐 request如果你要写很多这样的模块。从长远来看,它会为您节省大量的击键次数!

关于httpwebrequest - 如何向 3rd 方 API 编写 Node.js 请求?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5432139/

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