PHP code example of detailnet / jumbo-client

1. Go to this page and download the library: Download detailnet/jumbo-client 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/ */

    

detailnet / jumbo-client example snippets


// App-ID and App-Key are _id' => 'your-app-id',
    'app_key' => 'your-app-key',
);

// Create the client (e.g. the client for Jumbo Assets Service)
$client = AssetsClient::factory($config);

// Send a request
$params = array('query' => 'test');
$response = $client->listAssets($params);