PHRETS を使用して接続するための必須フィールドを教えてください。
私が使用した:
$config->setLoginUrl($rets_login_url)
->setUsername($rets_username)
->setPassword(getenv($rets_password))
->setRetsVersion('1.7.2');
一部の MLS サーバーには、次のような追加のパラメーターが必要です。
例として、次のコード スニペットを参照してください。
$config = \PHRETS\Configuration::load([
'login_url' => $login_url,
'username' => $user_name,
'password' => $user_password,
'user_agent' => $user_agent,
'user_agent_password' => $user_agent_password,
'rets_version' => '1.8',
]);
$rets = new \PHRETS\Session($config);