Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
fitbit-api-handler
Advanced tools
This is an unofficial web API SDK for Fitbit. Current focus is to work with activities but it is possible to request all other endpoints.
The library is compiled for node 9.6.
I use a library for handling REST API request - rest-api-handler. It is based on browser fetch feature so it needs polyfill.
Install npm library:
npm install fitbit-api-handler --save
Include fetch polyfill. I recommend cross-fetch. And you have to include form-data polyfill.
require('cross-fetch/polyfill');
global.FormData = require('form-data');
Check authentization methods on Fitbit. First generate url for Login to Fitbit:
const { Api, ApiScope } = require('fitbit-api-handler');
const api = new Api(YOUR_CLIENT_ID, YOUR_CLIENT_SECRET);
console.log(api.getLoginUrl(YOUR_RETURN_URL, [ApiScope.ACTIVITY, ApiScope.PROFILE]))
After login you will be redirected to YOUR_RETURN_URL with code parameter. Use this code to create authentization token:
const token = await api.requestAccessToken(YOUR_CODE, YOUR_RETURN_URL);
api.setAccessToken(token.access_token);
// extend your token
const extendedToken = await api.extendAccessToken(token.refresh_token);
Now you can send requests
Search for activities:
const { DateTime } = require('luxon');
const { activities } = await api.getActivities({
afterDate: DateTime.fromObject({
year: 2018,
month: 3,
day: 1,
}),
});
console.log(activities);
To create activity, use ActivityFactory
const { DateTime, Duration } = require('luxon');
const math = require('mathjs');
const { Activity, ACTIVITY_TYPES } = require('fitbit-api-handler');
const start = DateTime.fromObject({
year: 2018,
month: 3,
day: 27,
hour: 5,
minute: 2,
});
const activity = Activity.get(
ACTIVITY_TYPES.RUNNING,
start,
Duration.fromObject({ minutes: 3 }),
math.unit(3, 'km'),
);
const createdActivity = await api.createActivity(activity);
try {
await api.createActivity(activity);
} catch (exception) {
if (exception instanceof FitbitApiLimitException) {
const retryIn: Duration = exception.retryIn();
console.log(`Wait for ${retryIn.as('seconds')}`);
}
}
console.log(api.getFillRateLimits());
FAQs
Unofficial handler for Fitbit API
We found that fitbit-api-handler demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.