Jobs2Careers PHP API Client

Project Overview

Use the Jobs Common Jobs2Careers Provider to connect your PHP application with the Jobs2Careers job board API.

Installation

Use composer: composer require jobapis/jobs-jobs2careers

Usage

Get the latest project manager jobs in Chicago:

1
2
3
4
5
6
7
8
9
10
$query = new JobApis\Jobs\Client\Queries\J2cQuery([
'id' => 'Jobs2Careers Partner ID',
'pass' => 'Jobs2Careers Password',
'q' => 'project manager',
'l' => 'Chicago, IL',
]);
$client = new JobApis\Jobs\Client\Providers\J2cProvider($query);
$jobs = $client->getJobs();

For more detailed usage and documentation, see this project’s readme