使用 PHP 读取 JSON POST
在发布这个问题之前,我环顾了很多,所以如果它在另一个帖子上,我很抱歉,这只是我在这里的第二个疑问,所以如果我没有正确格式化这个问题,我很抱歉。
我创建了一个非常简单的Web服务,需要获取post值并返回JSON编码数组。一切都很好,直到我被告知我需要使用内容类型的应用程序/ json发布表单数据。从那时起,我无法从Web服务返回任何值,这肯定与我如何过滤它们的帖子值有关。
基本上在我的本地设置中,我创建了一个测试页面,可以执行以下操作 -
$curl = curl_init();
curl_setopt($curl, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
'Content-Type: application/json',
'Content-Length: ' . strlen($data))
);
curl_setopt($curl, CURLOPT_URL, 'http://webservice.local/'); // Set the url path we want to call
$result = curl_exec($curl);
//see the results
$json=json_decode($result,true);
curl_close($curl);
print_r($json);
在Web服务上,我有这个(我已经剥离了一些功能)-
<?php
header('Content-type: application/json');
/* connect to the db */
$link = mysql_connect('localhost','root','root') or die('Cannot connect to the DB');
mysql_select_db('webservice',$link) or die('Cannot select the DB');
if(isset($_POST['action']) && $_POST['action'] == 'login') {
$statusCode = array('statusCode'=>1, 'statusDescription'=>'Login Process - Fail');
$posts[] = array('status'=>$statusCode);
header('Content-type: application/json');
echo json_encode($posts);
/* disconnect from the db */
}
@mysql_close($link);
?>
基本上我知道这是由于$_POST值未设置,但我找不到我需要放置的东西,而不是$_POST。我尝试了json_decode($_POST),file_get_contents(“php://input”)和其他一些方法,但我有点在黑暗中拍摄。
任何帮助将不胜感激。
谢谢 史蒂夫
感谢迈克尔的帮助,这是向前迈出的明确一步,当我回响帖子时,我现在至少得到了一个回复....即使它为空
更新的卷曲 -
$curl = curl_init();
curl_setopt($curl, CURLOPT_HTTPHEADER, array('Content-Type: application/json'));
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
curl_setopt($curl, CURLOPT_URL, 'http://webservice.local/');
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, json_encode($data));
在数据发布到的页面上更新了php -
$inputJSON = file_get_contents('php://input');
$input= json_decode( $inputJSON, TRUE ); //convert JSON into array
print_r(json_encode($input));
正如我所说,至少我现在看到它返回空白页之前的回应