我正在尝试使用从此处下载的 PHRETS 通过 PHP 获取我的所有 MLS 列表:
https://github.com/dangodev/PHRETS-Example/blob/master/lib/phrets.php
我使用此示例将我的列表下载为 csv 格式:
我从 MLS 板上获得了 RETS URL、用户名和密码,但仍然无法连接。
在此处调用 PHRETS 库时,我的代码返回 false:
require_once("phrets.php");
// start rets connection
$rets = new phRETS;
echo "+ Connecting to {$rets_login_url} as {$rets_username}<br>\n";
$connect = $rets->Connect($rets_login_url, $rets_username, $rets_password);
if ($connect) {
echo " + Connected<br>\n";
}
else {
echo " + Not connected:<br>\n";
print_r($rets->Error());
exit;
}
当我转到库并查看 Connect 方法时,该代码在此处返回 false:
// make request to Login transaction
$result = $this->RETSRequest($this->capability_url['Login']);
if (!$result) {
return false;
}
当我查看我的 RETSRequest 方法时,它在这里返回 false,因为响应代码是 0 而不是 200
if ($response_code != 200) {
$this->set_error_info("http", $response_code, $response_body);
return false;
}
这是它试图连接的地方:
if ($this->ua_auth == true) {
$session_id_to_calculate_with = "";
// calculate RETS-UA-Authorization header
$ua_a1 = md5($this->static_headers['User-Agent'] .':'. $this->ua_pwd);
$session_id_to_calculate_with = ($this->use_interealty_ua_auth == true) ? "" : $this->session_id;
$ua_dig_resp = md5(trim($ua_a1) .':'. trim($this->request_id) .':'. trim($session_id_to_calculate_with) .':'. trim($this->static_headers['RETS-Version']));
$request_headers .= "RETS-UA-Authorization: Digest {$ua_dig_resp}\r\n";
}
$this->last_request_url = $request_url;
curl_setopt($this->ch, CURLOPT_URL, $request_url);
curl_setopt($this->ch, CURLOPT_HTTPHEADER, array(trim($request_headers)));
// do it
$response_body = curl_exec($this->ch);
$response_code = curl_getinfo($this->ch, CURLINFO_HTTP_CODE);
为什么我无法连接?
我可以使用 url、用户名和密码通过http://retsmd.com登录。我真的需要以 CSV 格式获取我的列表。
请帮忙
我的服务器上确实安装了 curl,我用这种方法进行了检查: