alagafonov / php-trademe-jobs-api
Trademe Jobs API Client
Installs: 1 128
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: ^5.5 || ^7.0
- marc-mabe/php-enum: ^2.2
- php-http/client-common: ^1.3
- php-http/curl-client: ^1.6
- php-http/discovery: ^1.1
- php-http/guzzle6-adapter: ^1.1
- php-http/httplug: ^1.1
Requires (Dev)
- phpunit/phpunit: ^4.0 || ^5.5
- squizlabs/php_codesniffer: *
This package is not auto-updated.
Last update: 2024-10-26 20:21:06 UTC
README
Trademe.co.nz Jobs APIs Client Library for PHP
Description
Trademe.co.nz Jobs APIs Client Library provides endpoints for managing, listing, and retrieving job listings. These are a subset of all of the functionality available across Trade Me but should provide a good starting point for starting to list and manage jobs through the API.
Requirements
Developer Documentation
http://developer.trademe.co.nz/getting-started/
Installation via Composer
composer require alagafonov/php-trademe-jobs-api:1.0.0-beta
Examples
// include composer dependencies require_once 'vendor/autoload.php'; $client = new Client(); $client->authenticate(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, TOKEN_SECRET); $listing = $client->listing()->retrieve(5032388);
License
Library is licensed under the MIT License - see the LICENSE file for details