keven/jobijoba-client
最新稳定版本:1.0.1
Composer 安装命令:
composer require keven/jobijoba-client
包简介
Simple API client for JobiJoba API
README 文档
README
Installation
$ composer install keven/jobijoba-client
You can view the client working locally by running the following command line with your own API credentials from the root of the package:
$ JOBIJOBA_CLIENT_ID=xxx JOBIJOBA_CLIENT_SECRET=xxx php -S localhost:8080 ./demo
Then go to http://localhost:8080 in your browser.
Usage
<?php use Keven\JobiJoba\ApiClient; $jobijoba = new ApiClient($clientId, $clientSecret); $page = $jobijoba->search("chauffeur", "Amiens"); foreach ($page->jobs as $job) { echo $job->title; // Available properties: // "id": "", // "link": "", // "title": "", // "description": "", // "publicationDate": "", // "coordinates": "", // "city": "", // "postalCode": "", // "department": "", // "region": "", // "sector": "", // "jobtitle": "", // "company": "", // "contractType": [], // "salary": "" }
That's it.
统计信息
- 总下载量: 5
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-10-07