我正在尝试调用基于Java的服务,该服务使用来自PHP(Magento)应用程序的Jackson对象映射器。在他们两个中我发送相同的标题和相同的参数,但CURL调用工作正常,因为PHP调用失败,并带有以下消息,
'No content to map to Object due to end of input'
我的卷曲如下,
curl -v -k -X POST -H "Content-Type:application/json;charset=UTF-8" -d '{"name":"john","email":"john@doe.com"}' https://localhost:8080/webapps/api/
PHP请求的代码如下,
$iClient = new Varien_Http_Client();
$iClient->setUri('https://localhost:8080/webapps/api/')
->setMethod('POST')
->setConfig(array(
'maxredirects'=>0,
'timeout'=>30,
));
$iClient->setHeaders($headers);
$iClient->setParameterPost(json_encode(array(
"name"=>"John",
"email"=>"john@doe.com"
)));
$response = $iClient->request();
我不是使用jackson对象映射器的java服务的所有者,所以我不知道在另一边发生了什么
有关调试或修复此问题的任何建议都将受到赞赏
答案 0 :(得分:0)
嗯,最后这个有用了。如果您引用Zend_Http_Client
,问题在于我的代码末尾有错误的实现。请参考以下Zend_Http_Client方法,
/**
* Set a POST parameter for the request. Wrapper around _setParameter
*
* @param string|array $name
* @param string $value
* @return Zend_Http_Client
*/
public function setParameterPost($name, $value = null)
{
if (is_array($name)) {
foreach ($name as $k => $v)
$this->_setParameter('POST', $k, $v);
} else {
$this->_setParameter('POST', $name, $value);
}
return $this;
}
/**
* Set a GET or POST parameter - used by SetParameterGet and SetParameterPost
*
* @param string $type GET or POST
* @param string $name
* @param string $value
* @return null
*/
protected function _setParameter($type, $name, $value)
{
$parray = array();
$type = strtolower($type);
switch ($type) {
case 'get':
$parray = &$this->paramsGet;
break;
case 'post':
$parray = &$this->paramsPost;
break;
}
if ($value === null) {
if (isset($parray[$name])) unset($parray[$name]);
} else {
$parray[$name] = $value;
}
}
因此setParameterPost仅以某种方式表示数组参数(键值对),而我的POST有效负载是json字符串。所以为了解决这个问题,我修改了下面的代码,
$iClient = new Varien_Http_Client();
$iClient->setUri('https://localhost:8080/webapps/api/')
->setMethod('POST')
->setConfig(array(
'maxredirects'=>0,
'timeout'=>30,
));
$iClient->setHeaders($headers);
$iClient->setRawData(json_encode(array(
"name"=>"John",
"email"=>"john@doe.com"
)), "application/json;charset=UTF-8");
$response = $iClient->request();
这解决了这个问题。我不确定一个更好的方法,但如果有更好的事情会很高兴使用它。