0

这是我执行 POST 的代码:

$url = "http://www.xxxxxxxxxxx.com/dfeed/index.cfm"; //where to send it
$ch = curl_init();
curl_setopt($ch, CURLOPT_VERBOSE, 1); // set url to post to
curl_setopt($ch, CURLOPT_URL, $url); // set url to post to
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); // return into a variable
curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml; charset=ISO-  8859-1'));
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 40); // times out after 4s
curl_setopt($ch, CURLOPT_POSTFIELDS, $data); // add POST fields
curl_setopt($ch, CURLOPT_POST, 1);
$result = curl_exec($ch); // run the whole process
echo $result;
//echo curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close ($ch);

我的帖子数组以相同的几个(手动定义)条目开始,如下所示:

$data[0] = "<?xml version='1.0' encoding='ISO-8859-1'?>\n";
$data[1] = "<rss xmlns:g='http://base.google.com/ns/1.0' version='2.0'  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'

xsi:noNamespaceSchemaLocation='http://www.xxxxx.com/dFeed/schemas/FeedSchema1.0.xsd'>\n";

其余的填充在这样的循环中:

array_push($data, "\t<item>\n");

服务器的响应表明与我设置的内容类型不同,并且还表明它没有收到任何信息,所以一定有问题:

HTTP/1.1 400 Bad Request Transfer-Encoding: chunked Content-Type: text/htmlServer: Microsoft-IIS/7.0 X-XXX Server: Web2 Date: Mon, 25 Jun 2012 12:49:53 GMT Bad Request
Error: Not XML
Content received: 
4

1 回答 1

0

字符集看起来像是其中有空格或其他东西,不确定这是刚刚进入 SO 还是实际上在您的代码中。

你真的需要在这个地方添加 \t 和 \n 吗,如果你不这样做,服务器不会关心。

尝试对 post 数组进行 implode() 处理,然后只发送一个 XML 字符串。

没有明确的答案,但希望朝着正确的方向发展。

让我们知道你的进展如何,祝你好运。

于 2012-06-25T13:21:04.400 回答