1. Go to this page and download the library: Download testmonitor/clickup-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/ */
$oauth = ['clientId' => '12345', 'clientSecret' => 'abcdef', 'redirectUrl' => 'https://redirect.myapp.com/'];
$token = new \TestMonitor\Clickup\AccessToken('eyJ0...'); // the token you got last time
$clickup = new \TestMonitor\Clickup\Client($oauth, $token);
$workspaces = $clickup->workspaces();
$workItem = $clickup->createTask(new \TestMonitor\Clickup\Resources\Task([
'name' => 'Name of the task',
'description' => 'Some description',
]), '12345');
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.