Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@egodigital/appstore-connect
Advanced tools
A simplfied library for Node.js 10+ for accessing Apple's App Store Connect API, written in TypeScript.
The module is quite new, so issues and pull requests are very welcome :-)
Execute the following command from your project folder, where your package.json
file is stored:
npm install --save @egodigital/appstore-connect
import * as fs from 'fs';
import { Client as AppStoreConnectClient, DownloadSalesReportFrequency } from '@egodigital/appstore-connect';
const PRIVATE_KEY = fs.readFileSync(
'/path/to/your/p8/file' // downloaded from https://appstoreconnect.apple.com/access/api
);
const CLIENT = new AppStoreConnectClient({
apiKey: '<YOUR-API-KEY>', // s. https://appstoreconnect.apple.com/access/api
issuerId: '<YOUR-ISSUER-ID>', // s. https://appstoreconnect.apple.com/access/api
privateKey: PRIVATE_KEY,
});
const SUMMARY = await CLIENT.getAppDownloads({
frequency: DownloadSalesReportFrequency.Weekly,
vendorId: '<YOUR-VENDOR-ID>', // s. https://appstoreconnect.apple.com/itc/payments_and_financial_reports
});
console.log(
SUMMARY
);
The API documentation can be found here.
FAQs
API client for Apple App Store Connect API.
The npm package @egodigital/appstore-connect receives a total of 8 weekly downloads. As such, @egodigital/appstore-connect popularity was classified as not popular.
We found that @egodigital/appstore-connect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.