TimeTree Web API
@timetreeapp/web-api
is simple HTTP client for requesting to TimeTree's Web API.
Installation
$ npm install @timetreeapp/web-api
$ yarn add @timetreeapp/web-api
Usage
Accessing API endpoints as a OAuth App
https://codesandbox.io/s/nifty-firefly-93mwg?fontsize=14&hidenavigation=1&theme=dark
import { OAuthClient } from "@timetreeapp/web-api";
const client = new OAuthClient("<your-access-token>");
(async () => {
const data = await client.getCalendars();
console.log("calendars", data);
})();
Options
new OAuthClient(
accessToken: string;
{
baseURL?: string;
timeout?: number;
retry?: number;
validateRetryable?: (error: AxiosError) => boolean;
onRetry?: (e: Error, count: number) => boolean;
})
Scheme
TimeTree API conforms to JSONAPI. But this sdk can deserialize response data and request data.
{
data: {
id: "1234",
type: "calendar",
attributes: {
name: "Some Calendar",
description: "Calendar description",
color: "#2ecc87",
order: 0,
image_url: "https://attachments.timetreeapp.com/path/to/image.png",
created_at: "2019-04-01T12:34:56.000Z"
},
relationships: {
labels: {
data: [...]
}
}
}
}
{
id: "1234",
type: "calendar",
name: "Some Calendar",
description: "Calendar description",
color: "#2ecc87",
order: 0,
imageUrl: "https://attachments.timetreeapp.com/path/to/image.png",
createdAt: "2019-04-01T12:34:56.000Z",
labels: [
{
id: "1234,1",
type: "label",
name: "label title(empty if default)",
color: "#2ecc87"
},
{ id: "1234,2", type: "label" },
]
}
Error Handling
this client throws axios's error object as it is.
see https://github.com/axios/axios#handling-errors
try {
const data = client.getUser();
} catch (e) {
e.response?.status
}
Get OAuth Access Token
TimeTree API uses OAuth2, you can use some OAuth2 library like client-oauth2
Accessing API endpoints as a Calendar App
import { CalendarAppAuthenticator, CalendarAppClient } from "@timetreeapp/web-api";
const authenticator = new CalendarAppAuthenticator({
applicationId: "<your-calendar-app-id>",
privateKey: "-----BEGIN RSA PRIVATE KEY-----\n....-----END RSA PRIVATE KEY-----\n",
});
(async () => {
const response = await authenticator.getAccessToken("<installation-id>");
const client = new CalendarAppClient(response.accessToken);
const data = await client.getCalendar();
console.log("calendar", data);
})();
Licence
MIT