PHP
几个月前我写了一个小应用程序,它使用WordPress XMLRPC library
来同步两个独立的 WordPress 博客。我有一个通用的“RPCRequest”函数来打包请求、发送它并返回服务器响应,我还有几个更具体的函数可以自定义发送的请求类型。
在这种特殊情况下,我调用“getPostIDs”来检索远程服务器上的帖子数量及其各自的 postid。这是代码:
$rpc = new WordRPC('http://mywordpressurl.com/xmlrpc.php', 'username', 'password');
$rpc->getPostIDs();
我收到以下错误消息:
expat reports error code 5
description: Invalid document end
line: 1
column: 1
byte index: 0
total bytes: 0
data beginning 0 before byte index:
有点悬念的结局,这也很奇怪。但由于错误消息不是以 XML 格式格式化的,我的直觉是它是本地 XMLRPC 库生成错误,而不是远程服务器。
更奇怪的是,如果我将“getPostIDs()”调用更改为“getPostIDs(1)”或任何其他整数,它就可以正常工作。
下面是 WordRPC 类的代码:
public function __construct($url, $user, $pass) {
$this->url = $url;
$this->username = $user;
$this->password = $pass;
$id = $this->RPCRequest("blogger.getUserInfo",
array("null", $this->username, $this->password));
$this->blogID = $id['userid'];
}
public function RPCRequest($method, $params) {
$request = xmlrpc_encode_request($method, $params);
$context = stream_context_create(array('http' => array(
'method' => "POST",
'header' => "Content-Type: text/xml",
'content' => $request
)));
$file = file_get_contents($this->url, false, $context);
return xmlrpc_decode($file);
}
public function getPostIDs($num_posts = 0) {
return $this->RPCRequest("mt.getRecentPostTitles",
array($this->blogID, $this->username,
$this->password, $num_posts));
}
正如我所提到的,如果“getPostIDs”被赋予一个正整数参数,它就可以正常工作。此外,这过去可以很好地工作;默认参数 0 只是向 RPC 服务器表明它应该检索所有帖子,而不仅仅是最近的$num_posts
帖子。直到最近才开始出现此错误。
我试过用谷歌搜索错误,但运气不佳。那么,我的问题是,“外籍人士报告错误代码 5”究竟是什么意思,谁在产生错误? 除此之外的任何细节/建议/见解也是受欢迎的!