错误415从帖子人

时间:2017-02-23 10:56:33

标签: postman

我正在使用List REST API来加载Party数据。使用以下详细信息:

Request type : POST
URL : http://localhost:1512/rest/V1.0/list/Party
Authorization : Yes
Header : No Header information
Body : form Data ->xml file.

当我发送请求时,我收到以下错误。你能帮我吗?

http-equiv="Content-Type" content="text/html;charset=ISO-8859-1"/>
Error 415 Unsupported Media Type

3 个答案:

答案 0 :(得分:4)

您需要在帖子请求中加入标题。在Postman中的标题下添加值,以包含Content-Type的值application/xml的键。您可能还想尝试text/xml的值,具体取决于您的身体内容。

这里有link有关text / xml和application / xml之间差异的信息。

答案 1 :(得分:0)

就我而言,我在VS 2017中创建了一个Web API 2.1项目,但遇到了同样的问题。我只应该禁用SSL。禁用的方法是右键单击名称项目>属性>调试>可用SSL。

enter image description here

答案 2 :(得分:0)

对于我的PUT调用,我将Body设置为“ raw”,并将“ Content-Type”添加到“ application / json”

enter image description here