PHP library for the Rightmove Real Time Property Datafeed.
To use this package, you need to:
- Be running PHP 5.4 or above
- Be using composer (if you want to follow the installation guide)
- Rightmove will provide you with a PEM certificate/password and Network ID to use in the requests. You should also have a Branch ID.
Note that this package's dependencies will also be installed. Check the composer.json
file from the repository if you want to see what these are before using it.
To install with Composer:
composer require craiglockhart81/rightmove-adf
Or add to a composer.json file:
"require": {
"craiglockhart81/rightmove-adf" : "1.*"
}
Examples are provided. It's recommended that you setup one of the examples to see how to interact with the library before continuing.
- Install this package using composer as outlined above.
- create a directory for your project for example
public_html
mkdir public_html
- copy the example code to the new
public_html
directory
cp -R vendor/craiglockhart81/rightmove-adf/examples/ public_html/
- copy the config file to a working Version
cp public_html/config.php.example public_html/config.php
- Edit the config file with your settings. You'll need to have a .pem file form RightMove with your Real Time Data Feed key in it, as well as your network and branch information.
- run the local web server
cd public_html
php -S localhost:8000
- run one of the example files from you browser (eg
http://localhost:8080/getBranchPropertyList.php
)
All values that you set in the configuration will be checked against what the API expects and return exceptions if the wrong data type is set.
All 13 of the v1.2.3 API endpoints are supported.
- SendProperty [Example]
- RemoveProperty [Example]
- GetBranchPropertyList [Example]
- AddPremiumListing [Example]
- AddFeaturedProperty [Example]
- RemoveFeaturedProperty [Example]
- GetPropertyPerformance [Example]
- GetBranchPerformance [Example]
- GetBrandEmails [Example]
- GetBranchEmails [Example]
- GetBrandPhoneLeads [Example]
- GetBranchPhoneLeads [Example]
- GetPropertyEmails [Example]
- Add in a pre-send validation check for required fields.
- The rightmove media crawler doesn't work over Lets Encrypt https and will just return an MED_00001 error.
Please submit any to the Github repo.