Hi,
I am currently developing a mobile and web application using this fitbit web API. Once a successfully get the data from the Fitbit Application, can we add CSS to the data to show nicely on bot mobile and web app?
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
Hi @Divyakona
After you have extracted the data from the Web APIs, you can add CSS to make it show nicely inside your application.
Gordon
Oh okay. I'm facing another trouble actually. For now using js i fetched the data into debug console. But i have no idea on how to fetch it back to post it on my web app actually. Can I use postman to fetch data from debug console to firebase then post to web?
Best Answer
Fitbit Developers oversee the SDK and API forums. We're here to answer questions about Fitbit developer tools, assist with projects, and make sure your voice is heard by the development team.
You can use Postman to fetch data through the Web APIs. Your scenario sounds a little more specific. Let's see if someone from the community can help you.
Best AnswerI'm a bit rusty on Web API stuff, but I think you get JSON objects as responses. Presumably you're already reading those in JavaScript.
Your web app will probably need to display output using HTML and CSS. You'll need to use JavaScript to extract the relevant data from the response JSON object and put it into your HTML DOM.
Best Answer