pdir/immobilienscout-api
Composer 安装命令:
composer require pdir/immobilienscout-api
包简介
Simple API Integration for Immobilienscout24
关键字:
README 文档
README
Requirements
PHP: >= 7.2
Extensions: Composer, PHP-JSON
Install
composer:
composer require pdir/immoscout-api
Usage
Search for the official API Documentation here.
You need an Consumer Key and Consumer Secret - Get your client credentials.
Use IS24 RestAPI playground for testing and getting the Access Token and Access Secret.
Manual generate Access Token and Access Secret (German)
Basic
// store keys in .env file or use credentials array $credentials = [ 'consumerKey' => 'IS24_CONSUMER_KEY', 'consumerSecret' => 'IS24_CONSUMER_SECRET', 'tokenKey' => 'IS24_TOKEN_KEY', 'tokenSecret' => 'IS24_TOKEN_SECRET', ]; $api = new \Pdir\Immoscout\Api(); or $api = new \Pdir\Immoscout\Api($credentials); // get all real estates with details $estates = $api->getAllRealEstates(true); // get only active real estates with details $estates = $api->getAllRealEstates(true, false, true); // get real estate by id $estate = $api->getRealEstate('1234567890'); // get attachments by id $attachments = $api->getAttachments('1234567890'); // get contact by id $contact = $api->getContact('1234567890');
统计信息
- 总下载量: 72
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2020-11-13