PHP code example of pavlokrostylovblps / oneroster-php-api
1. Go to this page and download the library: Download pavlokrostylovblps/oneroster-php-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/ */
pavlokrostylovblps / oneroster-php-api example snippets
use Kroscom\OneRosterAPI\Client\OneRosterClient;
use Kroscom\OneRosterAPI\OneRosterAPI;
$clientId = 'your-client-id';
$clientSecret = 'your-client-secret';
$baseUrl = 'https://example.com';
$client = new OneRosterClient($clientId, $clientSecret, $baseUrl);
$api = new OneRosterAPI($client);
$orgs = $api->orgs->get();
print_r($orgs);
$org = $api->orgs->getOne('10');
print_r($org);