Giter Site home page Giter Site logo

toggl-report-api's Introduction

Java Client of Toggl's Reports API

This project is a Java client for the public Toggl' Reports API. The client is based on a fluent java api that maps the cascade of methods to the Toggl's api endpoints. For example:

Compilation

mvn compile

Dependency

Thank's to jitpack it's very easy to use current builds

Step 1. Add the JitPack repository to your build file

<repositories>
    <repository>
        <id>jitpack.io</id>
        <url>https://jitpack.io</url>
    </repository>
</repositories>

Step 2. Add the dependency

<dependency>
    <groupId>com.github.rocketbase-io</groupId>
    <artifactId>toggl-report-api</artifactId>
    <version>toggl-report-api-1.1.0</version>
</dependency>

Usage

Very short examples you can also find within the tests goto tests

simply get it running

public static void main(String[] args) {
    TogglReportApi togglReportApi = new TogglReportApiBuilder()
                    .apiToken(API_TOKEN)
                    .userAgent(USER_AGENT)
                    .workspaceId(WORKSPACE_ID)
                    .build();
    
    WeeklyUsersTimeResult result = togglReportApi.weeklyUsersTime()
                    .since(start)
                    .get();
    
    System.out.println(result);
}

FetchAllDetailed

Fetch full list of all Detailed Results. The FetchAllDetailed cares about paging

List<TimeEntry> resultList = FetchAllDetailed.getAll(togglReportApi.detailed()
        .until(start)
        .since(end)
        .billable(Billable.BOTH));

Spring Context

To use this client in a Spring application consider the following setup:

@Configuration
public class TogglReportApiConfiguration {

    @Bean
    public TogglReportApi togglReportApi(@Value("${toggl-api.token}") String token, 
                    @Value("${toggl-api.user-agent}") String userAgent,
                    @Value("${toggl-api.workspace-id}") Long workspaceId) {
        return new TogglReportApiBuilder()
                       .setApiToken(token)
                       .setUserAgent(userAgent)
                       .setWorkspaceId(workspaceId)
                       .build();
    }
    
}

Dependencies

This API depends on these other popular modules (versions of spring-boot bom 2.1.8.RELEASE):

  • org.springframework artifact spring-web version 5.1.9.RELEASE

  • com.google.guava artifact guava version 28.1-jre

  • com.fasterxml.jackson.core artifact jackson-databind version 2.9.9.3

  • org.apache.httpcomponents artifact httpclient version 4.5.9

Since all these artifacts are pretty popular take with care the possible artifact's version conflicts. If you are going to use this software under an Android device consider the httpclient issues.

toggl-report-api's People

Contributors

melistik avatar michaelcarlson avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.