Forum Discussion
vrossouw
Helper III
7 years agoFITBIT - direct connection
Hi, any idea if it is possible to connect directly with your FITBIT charge 3 data through Power BI? I can see there is a download data option, but I want to connect directly to the data? Thanks
- 7 years ago
Not possible OOTB, but Fitbit does have an API you can connect to: https://dev.fitbit.com/build/reference/web-api/
You have to create a new app and authroize it to get a Bearer token you can use in Power Query:
let URL = "https://api.fitbit.com/1/user/-/activities/date/2018-12-31.json", Options = [ Headers = [ Authorization = "Bearer token" ] ], Source = Json.Document(Web.Contents(URL, Options)) in Source
v-frfei-msft
Community Support
7 years agoHi vrossouw,
Based on my test, it is not possible to meet your requirement currently. You can come up a new idea about that and add your comments there to improve Power BI and make this feature coming sooner.
https://ideas.powerbi.com/forums/265200-power-bi-ideas
Regards,
Frank