使用post将数据发送到Web服务

时间:2013-04-05 12:36:03

标签: php json web-services curl

我已经获得了如何连接到某个网络服务器的示例。

这是一个带有两个输入的简单形式:

Webservice Form

在使用令牌和json提交表单后返回true。

这是代码:

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8" />
        <title>Webservice JSON</title>
    </head>
    <body>
        <form action="http://foowebservice.com/post.wd" method="post">
            <p>
                <label for="from">token: </label>
                <input type="text" id="token" name="token"><br>
                <label for="json">json: </label>
                <input type="text" id="json" name="json"><br>
                <input type="submit" value="send">
                <input type="reset">
            </p>
        </form>
    </body>
</html>

为了让它变得动态,我试图用PHP复制它。

$url = "http://foowebservice.com/post.wd";

$data = array(
  'token' => 'fooToken',
  'json' => '{"foo":"test"}',
);

$content = json_encode($data);
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_HTTPHEADER,
  array("Content-type: application/json"));
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

$json_response = curl_exec($curl);

$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

curl_close($curl);

$response = json_decode($json_response, true);

但我必须做错事,因为$响应它给出了错误的值。

我不介意以任何其他方式执行此操作,而不是使用Curl。

有什么建议吗?

更新

正如第一个答案所示,我试图以这种方式设置$ data数组:

$data = array(
  'token' => 'fooToken',
  'json' => array('foo'=>'test'),
);

然而,回应也是错误的。

我已尝试使用Chrome Postman REST - Client plugin,并使用开发工具/网络,标题中的网址为:

Request URL:http://foowebservice.com/post.wd?token=fooToken&json={%22foo%22:%22test%22}

我假设与使用CURL发送的URL相同。

2 个答案:

答案 0 :(得分:5)

您正在以JSON格式传递POST数据,尝试以k1 = v1&amp; k2 = v2的形式传递它。 例如,在$data数组定义之后添加以下内容:

foreach($data as $key=>$value) { $content .= $key.'='.$value.'&'; }

然后删除以下行:

$content = json_encode($data);

curl_setopt($curl, CURLOPT_HTTPHEADER,
   array("Content-type: application/json"));

完整代码(已测试):

<强> test.php的

<?
$url = "http://localhost/testaction.php";

$data = array(
  'token' => 'fooToken',
  'json' => '{"foo":"test"}',
);

foreach($data as $key=>$value) { $content .= $key.'='.$value.'&'; }

$curl = curl_init($url);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $content);

$json_response = curl_exec($curl);

$status = curl_getinfo($curl, CURLINFO_HTTP_CODE);

curl_close($curl);

$response = json_decode($json_response, true);
var_dump($response);
?>

<强> testaction.php

<?
echo json_encode($_POST);
?>

<强>输出:

array(2) {
  'token' =>
  string(8) "fooToken"
  'json' =>
  string(14) "{"foo":"test"}"
}

答案 1 :(得分:1)

$data的一部分已经是json编码的。尝试制作$data纯php。即$data['json']=array('foo'=>'test');