PHP code example of ethical-jobs / ethical-jobs-sdk
1. Go to this page and download the library: Download ethical-jobs/ethical-jobs-sdk library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
ethical-jobs / ethical-jobs-sdk example snippets
// GET /jobs
EthicalJobs::get('/jobs', ['status' => 'APPROVED']);
// GET /jobs/drafts
EthicalJobs::get('/jobs/drafts', ['status' => 'APPROVED']);
// GET /jobs/214
EthicalJobs::get('/jobs/214');
// GET /jobs { status: APPROVED, expired: false }
EthicalJobs::resource('jobs')->approved();
// GET /jobs { expired: true }
EthicalJobs::resource('jobs')->expired();
// POST /jobs { ... }
EthicalJobs::post('/jobs', ['title' => 'React Developer', 'description' => 'We are looking for...']);