{"id":19795411,"url":"https://github.com/itemconsulting/reactive-timely","last_synced_at":"2026-06-11T19:31:12.093Z","repository":{"id":30547237,"uuid":"34101966","full_name":"ItemConsulting/reactive-timely","owner":"ItemConsulting","description":"A Java library to access Timely in a reactive manner","archived":false,"fork":false,"pushed_at":"2015-06-15T09:00:21.000Z","size":220,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-02-28T16:08:29.510Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ItemConsulting.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-04-17T07:10:09.000Z","updated_at":"2015-04-17T07:46:08.000Z","dependencies_parsed_at":"2022-09-08T16:00:43.067Z","dependency_job_id":null,"html_url":"https://github.com/ItemConsulting/reactive-timely","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ItemConsulting/reactive-timely","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItemConsulting%2Freactive-timely","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItemConsulting%2Freactive-timely/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItemConsulting%2Freactive-timely/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItemConsulting%2Freactive-timely/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ItemConsulting","download_url":"https://codeload.github.com/ItemConsulting/reactive-timely/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ItemConsulting%2Freactive-timely/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34215253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-12T07:16:17.716Z","updated_at":"2026-06-11T19:31:12.074Z","avatar_url":"https://github.com/ItemConsulting.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Reactive Timely\nA Java library to access timely in a reactive manner\n\n## Usage\n\n```java\n        Long timeout = 2000L;\n        String baseUrl = \"https://mypage.timelyapp.com\";\n        String authURL = baseUrl + \"/api/v1/oauth/authorize\";\n        String tokenURL = baseUrl + \"/api/v1/oauth/token\";\n\n        // this object's used to hold the refresh token (and pzzt... you can save it persistently)\n        RefreshTokenHolder refreshTokenHolder = new SimpleRefreshTokenHolder();\n\n        // sets up an oauth client that will do the request-token stuff for you\n        OAuthClient client = OAuthClient.create(authURL, tokenURL)\n                .clientId(\"...\")\n                .clientSecret(\"...\")\n                .redirectUri(\"http://localhost\")\n                .refreshTokenHolder(refreshTokenHolder)\n                .build();\n\n        // this is your timely service\n        TimelyService timely = new TimelyService(client, baseUrl);\n\n        // get events\n        JsonNode eventList = timely.events()\n                .list(\"2014-08-18\", \"2014-08-24\")\n                .get(timeout);\n\n        // get first project's name (reactivly)\n        Promise\u003cString\u003e projectName = timely.projects()\n                .list(10, 0, \"ASC\")\n                .map(json -\u003e ((ArrayNode) json).get(0).path(\"name\").asText());\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitemconsulting%2Freactive-timely","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitemconsulting%2Freactive-timely","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitemconsulting%2Freactive-timely/lists"}