Jobinventory RSS Feed Provider Released

2016-10-29

While most of the job board clients supported by Jobs Common are for job boards with full-service APIs, Jobinventory only provides an XML RSS feed for consumption. Today we released our first version of the PHP RSS client for Jobinventory, and you can download it here on Github.

Use of the Jobinventory provider follows much the same pattern as our other job board providers.

First, create a Query object:

1
2
3
4
5
$query = new JobApis\Jobs\Client\Queries\JobinventoryQuery([
'q' => 'engineering',
'l' => 'Chicago, IL',
'limit' => '100',
]);

For a full list of supported query options, see this file.

And inject it into the JobinventoryProvider:

1
2
$client = new JobApis\Jobs\Client\Provider\JobinventoryProvider($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 have any questions or comments.