NAME WebService::HealthGraph - A thin wrapper around the Runkeeper (Health Graph) API VERSION version 0.000001 SYNOPSIS my $graph = WebService::HealthGraph->new( debug => 1, token => 'foo', ); my $user = $graph->user; use Data::Printer; p $user->content; # Fetch a weight feed use DateTime (); use URI::FromHash qw( uri ); my $cutoff = DateTime->now->subtract( days => 7 ); my $uri = uri( path => '/weight', query => { noEarlierThan => $cutoff->ymd }, ); my $feed = $graph->get($uri); p $feed->content; get( $url, [$headers] ) DESCRIPTION BETA BETA BETA. The interface is subject to change. This is a very thin wrapper around the Runkeeper (Health Graph) API. At this point it assumes that you already have an OAuth token to connect with. You can use Mojolicious::Plugin::Web::Auth::Site::Runkeeper to create a token. If that doesn't suit you, patches to add OAuth token retrieval to this module will be happily accepted. AUTHOR Olaf Alders COPYRIGHT AND LICENSE This software is copyright (c) 2016 by Olaf Alders. This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.