为什么我的 POST 到 AWS API 网关失败了?
Why did my POST to AWS API Gateway failed?
我使用 POSTMAN 测试我的 Cloudformation 创建的 API
POST https://6pppnxxxh.execute-api.eu-central-1.amazonaws.com/Prod/users
我得到了
{
"message": "Missing Authentication Token"
}
我的产品阶段
我仔细检查了 PROD Invoke URL。
如何解决这个问题呢?
我尝试使用 curl
curl --header "Content-Type: application/json" --request POST --data '{ "emailaddress" : "acj@rambler.ru,"first name" : "Aca","last name" : "Ljubascikic", "password" : "bbbac_96"}' https://6pppnxxxh.execute-api.eu-central-1.amazonaws.com/Prod/users
同样的问题
{"message":"Missing Authentication Token"}
如何从 CLI 进行测试?
根据您的屏幕截图,/Prod/users
是一个 PUT
方法,您在命令中使用 POST
。我会先确认这一点。
希望对您有所帮助。
我使用 POSTMAN 测试我的 Cloudformation 创建的 API
POST https://6pppnxxxh.execute-api.eu-central-1.amazonaws.com/Prod/users
我得到了
{
"message": "Missing Authentication Token"
}
我的产品阶段
我仔细检查了 PROD Invoke URL。 如何解决这个问题呢? 我尝试使用 curl
curl --header "Content-Type: application/json" --request POST --data '{ "emailaddress" : "acj@rambler.ru,"first name" : "Aca","last name" : "Ljubascikic", "password" : "bbbac_96"}' https://6pppnxxxh.execute-api.eu-central-1.amazonaws.com/Prod/users
同样的问题
{"message":"Missing Authentication Token"}
如何从 CLI 进行测试?
根据您的屏幕截图,/Prod/users
是一个 PUT
方法,您在命令中使用 POST
。我会先确认这一点。
希望对您有所帮助。