Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
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());
v7.2.1 (2022-02-06)
Co-authored-by: Renovate Bot bot@renovateapp.com
FAQs
Unofficial handler for Fitbit API
The npm package fitbit-api-handler receives a total of 226 weekly downloads. As such, fitbit-api-handler popularity was classified as not popular.
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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.