Reputation: 351
I have an Android Application and I want to integrate my android application with Fitbit Tracker(fitbit). And I want to count the number of steps moved by the user by using that Fitbit Tracker and want back the number of step taken by the particular user in my application, so I can calculate the amount of calories burn during the walking activity.
Any help will be appreciable.
Upvotes: 3
Views: 6476
Reputation: 640
Its late but can be helpful.
Fitbit don't allow 3rd party app to get the data from the device. It is synchronized with the fitbit application on the phone and is available through the Fitbit API.
During registration of application, if you dont have callback url, you can use your fitbit profile as the url & you can use your own name as organization name.
You can check this out for implementation.
Upvotes: 1
Reputation: 459
If you want to connect your android app to fitbit tracker then you should call fitbit apis for accessing fitness data related to user. First do authentication process and then you can access users data from fitbit server. You can get more information here.
Upvotes: 1