12-04-2014 06:31
12-04-2014 06:31
How can I fetch all data from my account on one call from client ?
I want to integrate like mapmyrun website and I am using 'Ohmy Outh' library.when call api then its giving me only one date data. Below is my code
$fitbit->GET("https://api.fitbit.com/1/user/$user_id/activities/date/2014-12-04.json")
->then(function($response) {
$_SESSION['data~'] = json_encode($response->json());
});
Please help me