Skip to content

Latest commit

 

History

History
89 lines (66 loc) · 4.04 KB

README.md

File metadata and controls

89 lines (66 loc) · 4.04 KB

RightmoveADF

PHP library for the Rightmove Real Time Property Datafeed.

Latest Stable Version Build Status Coverage Status MIT License PHP 5.4 PHP 5.5 PHP 5.6 PHP 7

Install

To install with Composer:

composer require frozensheep/rightmove-adf

Or add to a composer.json file:

"require": {
	"frozensheep/rightmove-adf" : "1.*"
}

Usage

All 13 of the v1.2.1 API endpoints are supported.

Example

<?php
use Frozensheep\RightmoveADF\RightmoveADF;

//create the RightmoveADF object
$objRightmoveADF = new RightmoveADF(CERT_FILE, CERT_PASS, RightmoveADF::TEST);
//$objRightmoveADF = new RightmoveADF(CERT_FILE, CERT_PASS, RightmoveADF::LIVE);

//create a request
$objRequest = $objRightmoveADF->createRequest(RightmoveADF::GetBranchPropertyList);

//set the details for the request
$objRequest->network->network_id = NETWORK_ID;
$objRequest->branch->branch_id = BRANCH_ID;

//send the request
$objResponse = $objRightmoveADF->send($objRequest);

if($objResponse->success){
	//
	//do something with the response
	//
}else{
	print_r($objResponse->errors);
}

Rightmove will provide you with a PEM certificate/password and Network ID to use in the requests.

All values that you set will be checked against what the API expects and return exceptions if the wrong data type is set.

Todo

  • Add in option to set verbose mode on the request to help track errors with certificates.
  • Add in a pre-send validation check for required fields.

Known Issues

None.

Please submit any to the Github repo.