【发布时间】:2021-08-25 08:28:00
【问题描述】:
我有一个 HTTP 代理端点,经过测试可以正常工作:
Request: /results?auth=abc123&id=9876&start=2016-08-20&end=2016-09-01
Status: 200
Latency: 265 ms
当通过 Postman 定位时,返回以下内容:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html>
<head>
<title>400 Bad Request</title>
</head>
<body>
<h1>Bad Request</h1>
<p>Your browser sent a request that this server could not understand.
<br />
</p>
</body>
</html>
端点设置如下(部分信息已编辑):
没有身份验证或授权设置(它是直接传递查询参数)。
【问题讨论】:
标签: amazon-web-services aws-lambda aws-api-gateway