PHP code example of alagafonov / php-trademe-jobs-api

1. Go to this page and download the library: Download alagafonov/php-trademe-jobs-api library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

alagafonov / php-trademe-jobs-api example snippets


// include composer dependencies
->authenticate(CONSUMER_KEY, CONSUMER_SECRET, ACCESS_TOKEN, TOKEN_SECRET);
$listing = $client->listing()->retrieve(5032388);
bash
composer