timetree / timetree-sdk-php
Official SDK for using TimeTree WebAPI
Installs: 1 805
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 6
Forks: 1
Open Issues: 1
Requires
- firebase/php-jwt: ^5.2
- guzzlehttp/guzzle: ^7.2
- jawira/case-converter: ^3.4
Requires (Dev)
- mockery/mockery: ^1.4
- overtrue/phplint: ^2.2
- phpunit/phpunit: ^9.4
- ulrichsg/getopt-php: ^3.4
This package is auto-updated.
Last update: 2024-10-03 00:44:50 UTC
README
timetree/timetree-sdk-php
is simple HTTP client for requesting to TimeTree's Web API.
Versions
timetree-sdk-php
uses a modified version of Semantic Versioning for all changes.
Installation
You can install timetree-sdk-php via composer or download this code.
Via Composer
composer require timetree/timetree-sdk-php
Usage
Accessing API endpoints as a OAuth App
Please see here for OauthApp. docs
GetAccessToken
<?php use TimeTreeWebApi\OauthApp\OAuthAuthenticator; $instance = new OAuthAuthenticator( "<clientId>", "<clientSecret>", "<redirectUri>", "<code>", "<grantType>", "<codeVerifier>", ); $tokens = $instance->getToken(); // Please save this token print_r($tokens);
GetCalendars
<?php use TimeTreeWebApi\OauthApp\OauthClient; use TimeTreeWebApi\OauthApp\Parameter\GetCalendarsParams; $instance = new OauthClient( "<your-access-token>", ); $calendars = $instance->getCalendars(new GetCalendarsParams()); print_r($calendars);
CreateEvents
<?php use TimeTreeWebApi\OauthApp\OauthClient; use TimeTreeWebApi\OauthApp\Parameter\CreateEventParams; use TimeTreeWebApi\OauthApp\Parameter\LabelsParams; $instance = new OauthClient( "<your-access-token>", ); $event = $instance->createEvent(new CreateEventParams( "ABCD", // CalendarID "Event Title", // Event Title "schedule", // "schedule" or "keep" true, // Allday: true or false new LabelsParams(1), // Label ID you want to set. new DateTime("2021-01-01"), // Start time of the event you want to create. null, // TimeZone of Start time new DateTime("2021-01-01"), // End time of the event you want to create. )); print_r($event);
Accessing API endpoints as a Calendar App
Please see here for CalendarApp. docs
GetCalendar
<?php use TimeTreeWebApi\CalendarApp\CalendarAppAuthenticator; use TimeTreeWebApi\CalendarApp\CalendarAppClient; $instance = new CalendarAppAuthenticator( "<your-calendar-app-id>", "-----BEGIN RSA PRIVATE KEY-----\n....-----END RSA PRIVATE KEY-----\n" ); $token = $instance->getAccessToken("<installation-id>"); $client = new CalendarAppClient($token); $calendar = $client->getCalendar(); print_r($calendar);
CreateEvents
<?php use TimeTreeWebApi\CalendarApp\CalendarAppAuthenticator; use TimeTreeWebApi\CalendarApp\CalendarAppClient; use TimeTreeWebApi\CalendarApp\Parameter\CreateEventParams; $instance = new CalendarAppAuthenticator( "<your-calendar-app-id>", "-----BEGIN RSA PRIVATE KEY-----\n....-----END RSA PRIVATE KEY-----\n" ); $token = $instance->getAccessToken("<installation-id>"); $client = new CalendarAppClient($token); $params = new CreateEventParams( "Event Title", // Event Title "schedule", // "schedule" or "keep" true, // Allday: true or false new LabelsParams(1), // Label ID you want to set. new DateTime("2021-01-01"), // Start time of the event you want to create. null, // TimeZone of Start time new DateTime("2021-01-01"), // End time of the event you want to create. ); $response = $client->createEvent($params); print_r($response);
Exception
timetree-sdk-php
depends on guzzle. So Exceptions also throw guzzle's as it is.
LICENSE
Read License for more licensing information.