gpt4 book ai didi

node.js - 如何在 NodeJS 中向 aws api 网关调用添加身份验证

转载 作者:太空宇宙 更新时间:2023-11-04 02:05:53 24 4
gpt4 key购买 nike

我使用以下选项从 Node 调用 AWS APi Gateway:

var post_options = {
host: 'myurl.execute-api.us-west-2.amazonaws.com',
port: '443'
path: '/staging/api',
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(post_data)
}
};

调用方式如下:

http.post(post_options, post_data, function(res){
res.setEncoding('utf8');
res.on('data', function(chunk) {
console.log(chunk);
});
});

我得到的回复是:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>ERROR: The request could not be satisfied</TITLE>
</HEAD><BODY>
<H1>ERROR</H1>
<H2>The request could not be satisfied.</H2>
<HR noshade size="1px">
Bad request.
<BR clear="all">
<HR noshade size="1px">
<PRE>
Generated by cloudfront (CloudFront)
Request ID: Yl1rUhK7Bmaq57ckHvK1E32tqNqDs4GC078yek3_23_RMefXUGJAdA==
</PRE>
<ADDRESS>
</ADDRESS>
</BODY></HTML>
name: undefined
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<HTML><HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1">
<TITLE>ERROR: The request could not be satisfied</TITLE>
</HEAD><BODY>
<H1>ERROR</H1>
<H2>The request could not be satisfied.</H2>
<HR noshade size="1px">
Bad request.
<BR clear="all">
<HR noshade size="1px">
<PRE>
Generated by cloudfront (CloudFront)
Request ID: nJ3dotCRum8XudR6v0PinqzDjjPCX3N5TmoM2fNQSJK9BLn8jJEWqg==
</PRE>
<ADDRESS>
</ADDRESS>
</BODY></HTML>

我认为,我收到“错误请求”,因为我没有向我的调用传递任何身份验证信息。添加此类身份验证信息的正确语法是什么?

最佳答案

API Gateway 不支持分块编码,这是您尝试在后端使用的吗?如果通过 API Gateway 返回的响应 header 表明我们应该使用分块编码,则可能存在问题。

无论如何,您都不应该收到此错误,但我想确定有关您的 API/后端的更多细节。

关于node.js - 如何在 NodeJS 中向 aws api 网关调用添加身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44348224/

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