我使用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"/>
我的Mojolicious应用程序只能通过json或html响应。
当请求不同的格式时,我想使用415 Unsupported Media Type状态代码进行响应。
$c->render( text => 'We support only HTML and JSON', status => 415 )
哪个将是最好的地方,把这个逻辑?
UPD
$c->respond_to(
json => {template => 'hello', data => $data },
html => {template
我们已将媒体类型限制为“application/json”。因此,如果请求头包含“Content:text/平原”,它将使用以下错误消息和状态代码415进行响应。这种行为是预期的,但我想用状态代码415发送空响应。我们如何在.Net Web中做到这一点?
{
"message": "The request entity's media type 'text/plain' is not supported for this resource.",
"exceptionMessage": "No Media
在使用WebAPI后端服务器进行新项目时,我很难从一个实际的网站向控制器投递,尽管邮递员没有向控制器投递的问题。我得到一个错误415,浏览器控制台日志记录:
HTTP415: UNSUPPORTED MEDIA TYPE - The server is refusing to service the request because the entity of the request is in a format not supported by the requested resource for the requested method.
(XHR)OPTIONS - http://loca