You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Team,
We are new to RETS server connection. We are trying to connect RETS to our Laravel (V7.30) project. We installed troydavisson/PHRETS module into our project to check the API connectivity. When we tried to connect to get basic data, we are getting error
GuzzleHttp\Exception\ClientException
Client error: 401 Access Denied response: <html xml (truncated...)
I've come across this problem after hitting a rate limit but also ran into this when the feed provider decided to switch the URLs without me being notified in advance.
My money is on rate limit is reached or maintenance.
Hi Team,
We are new to RETS server connection. We are trying to connect RETS to our Laravel (V7.30) project. We installed troydavisson/PHRETS module into our project to check the API connectivity. When we tried to connect to get basic data, we are getting error
GuzzleHttp\Exception\ClientException
Client error:
401 Access Denied
response: <html xml (truncated...)The code is as below:
$config = new \PHRETS\Configuration; $config->setLoginUrl('xxxxxxxxxxx') ->setUsername('XXXXXXXX') ->setPassword('XXXXXXXX') ->setRetsVersion('1.7.2'); \PHRETS\Http\Client::set(new \GuzzleHttp\Client); $connect = $rets->Login(); $options = array("UsePost" => 1); $results = $rets->Search("PROPERTY", "RES", "(LISTSTATUS=|ACT)", $options); print_r($results);
Kindly help us if is there anything we missed. Also, let us know if the above process is correct or not.
The text was updated successfully, but these errors were encountered: