Я создаю простой веб-API, и он возвращает ошибку. "message": "Заголовок Content-Type недействителен." в Magento / SamplePaymentGateway / et c мой webapi -
<?xml version="1.0" ?>
<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Webapi:etc/webapi.xsd">
<route method="GET" url="/V1/cevnn/post">
<service class="Magento\SamplePaymentGateway\Api\PostManagementInterface" method="getPost"/>
<resources>
<resource ref="anonymous"/>
</resources>
</route>
</routes>
Magento / SamplePaymentGateway / Api - это PostManagementInterface. php файл
<?php
namespace Magento\SamplePaymentGateway\Api;
interface PostManagementInterface {
public function getPost($param);
}
и в Mangento / SamplePaymentGateway / Model там - это PostManagement. php файл
<?php
namespace Magento\SamplePaymentGateway\Model;
class PostManagement {
public function getPost($param)
{
return 'api GET return the $param ' . $param;
}
}
, когда я вызываю его через этот URL http://127.0.0.1/project-community-edition/rest/V1/cevnn/post?param=ali. он возвращает следующую ошибку {"сообщение": "Заголовок Content-Type недействителен". } пожалуйста, расскажите, как я могу это исправить.