PHP code example of werbeagentur_artrevolver / scope-php-sdk
1. Go to this page and download the library: Download werbeagentur_artrevolver/scope-php-sdk 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/ */
werbeagentur_artrevolver / scope-php-sdk example snippets
$config = [
'SCOPE_URL' => 'https://example.com',
'SCOPE_CLIENT_ID' => 'your-client-id',
'SCOPE_CLIENT_SECRET' => 'your-client-secret',
'GA_TRACKING' => true, // optional
];
$api = new HeyRestApi($config);
sh
composer