-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bd306ea
commit 44a0ffb
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Fitbit Authentication for android developement. | ||
|
||
The above code lets you to authenticate user from mobile side and provide access to back end on user data resite on fitbit server. For Example: You can have users health data(step count, calories, distance, heart rate, etc), general information like Height, Weigh, gender etc. | ||
|
||
Steps to follow | ||
|
||
1. Register application on Fitbit dev portal | ||
|
||
2. Provide all necessary information which requred and compulsary. | ||
|
||
3. Copy 'Client Id', 'Client Secrete' and 'Redirect Url' and keep it in Constant File against respective variable | ||
|
||
const val CLIENT_ID = "update client id from Fitbit Dev Portal" | ||
|
||
const val CLIENT_SECRETE = "update client secrete from Fitbit Dev Portal" | ||
|
||
const val FITBIT_REDIRECT_URL = "update redirect url from Fitbit Dev Portal" | ||
|
||
All done. Run app and you are good to go. | ||
|
||
Happy Coding :) |