获取415 - Postman帖子方法中不支持的媒体类型

时间:2017-03-24 09:32:28

标签: rest api amazon-web-services postman

我使用postman(https://www.getpostman.com/)来测试我的API API在AWS ApiGateway和Lambda函数(NodeJS)

(1)当我第一次向服务器发送post方法请求时,它给出了正确的响应,我现在不发送任何post params。

这是请求标题 -

Connection →keep-alive
Content-Length →61
Content-Type →application/json
Date →Fri, 24 Mar 2017 09:09:13 GMT
Via →1.1 440f7503597ca64245c4258c03b08e0c.cloudfront.net (CloudFront)
X-Amz-Cf-Id →t50_SeWgC3Qb2ZFtf4fksUTdi5viINCaAEj8MPTvhRbtMHu-LK1mwA==
X-Amzn-Trace-Id →Root=1-58d4e239-76404c1ab9912d010fac33a2
X-Cache →Miss from cloudfront
x-amzn-RequestId →8c8f9bd2-1071-11e7-9490-79b68cde95e0

以下是回复

{
  "response": "false",
  "message": "Please enter a valid email !"
}

当没有邮寄索引发送请求时,它的工作正常。

(2)现在当我发送一些参数请求时,     请求标头已更改,并删除了一个标头prama     的 X-AMZN-痕量-ID

这是请求标题 -

Connection →keep-alive
Content-Length →37
Content-Type →application/json
Date →Fri, 24 Mar 2017 09:02:52 GMT
Via →1.1 d6cd0a105a9b074288944d270dfa7321.cloudfront.net (CloudFront)
X-Amz-Cf-Id →UZLUL1lYwAIrnwaa7kPVrPBx462sa7sV0x0WFQFGJ2OXVbrp9gaNYg==
X-Cache →Error from cloudfront
x-amzn-RequestId →a9c4116a-1070-11e7-b08c-c3cf73411cde

这是请求正文

{
"userEmail":"rahul@gmail.com",
"userPasswod":"123456",
"userName":"rahul"
}

以下是回复

{
  "message": "Unsupported Media Type"
}

在很多R& D之后我还在标题中添加了content/Type- application/json,但仍然得到相同的响应。

请有人帮我跟邮递员弄清楚这个问题。

0 个答案:

没有答案