Stack Overflow Job Board Client

2016-11-29

Stack Overflow is widely recognized for being one of the best Q&A sites for developers. This package makes it easy to access their job listings via the site’s RSS feed and the Jobs Common project. Use of this package is similar to most other packages supported by Jobs Common:

First, create a Query object:

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

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

And inject it into the StackoverflowProvider:

1
2
$client = new JobApis\Jobs\Client\Provider\StackoverflowProvider($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.