Careerjet Jobs Provider Released

2016-11-09

Today we released the first version of a Careerjet job board API client using Jobs Common v2. Jobs Multi support will be released later this week as well.

To install the package, add it to your project’s composer file:

1
composer require jobapis/jobs-careerjet

As with all Jobs Common providers, you just need to create a Query:

1
2
3
4
5
6
$query = new JobApis\Jobs\Client\Queries\CareerjetQuery([
'keywords' => 'engineering',
'location' => 'Chicago, IL',
'page' => '1',
'affid' => YOUR_AFFILIATE_ID,
]);

And inject it into the CareerjetProvider:

1
2
$client = new JobApis\Jobs\Client\Provider\CareerjetProvider($query);
$jobs = $client->getJobs();

This will return a Collection of Job objects.

For more detailed usage and documentation, see this project’s readme, and as always, feel free to contact us if you’d like to get involved.