1. Go to this page and download the library: Download lobrs/calendly-sdk-php 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/ */
$provider = new CalendlyOAuthProvider([
"clientId" => env('CALENDLY_CLIENT'),
"clientSecret" => env('CALENDLY_OAUTH_SECRET'),
'redirectUri' => env('CALENDLY_REDIRECT_URI'),
]);
if (!isset($_GET['code'])) {
// If we don't have an authorization code then get one
$authUrl = $provider->getAuthorizationUrl();
header('Location: ' . $authUrl);
exit;
} else {
// Try to get an access token (using the authorization code grant)
$token = $provider->getAccessToken('authorization_code', [
'code' => $_GET['code'],
]);
try {
// We got an access token, let's now get the user's details
$user = $provider->getResourceOwner($token);
print_r($user->toArray());
} catch (Exception $e) {
exit('Failed to get user details');
}
// Use this to interact with an API on the users behalf
echo $token->getToken();
}
composer
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.