
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy 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, SCOPES } = require('fitbit-api-handler');
const api = new Api(YOUR_CLIENT_ID, YOUR_CLIENT_SECRET);
console.log(api.getLoginUrl(YOUR_RETURN_URL, [SCOPES.ACTIVITY, SCOPES.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 { ActivityFactory, ACTIVITY_TYPES } = require('fitbit-api-handler');
const start = DateTime.fromObject({
year: 2018,
month: 3,
day: 27,
hour: 5,
minute: 2,
});
const activity = ActivityFactory.get(
ACTIVITY_TYPES.RUNNING,
start,
Duration.fromObject({ minutes: 3 }),
math.unit(3, 'km'),
);
const createdActivity = await api.createActivity(activity);
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.