@rage-against-the-pixel/app-store-connect-api
v3.6.0
Published
A TypeScript package for communicating with Apple App Store Connect API
Downloads
70
Maintainers
Readme
app-store-connect-api
A TypeScript package for communicating with Apple App Store Connect API
- Automatically generated API client using the latest OpenAPI specification from Apple.
- Fully typed models and methods for every endpoint.
- Designed for use in a Node.js server environment.
Installation
npm install @rage-against-the-pixel/app-store-connect-api
Authentication
To authenticate with the API you will need to create a API keys for App Store Connect API.
Download and save the private key .p8
file to a save, secure location.
The contents of this file is your privateKey
.
The privateKeyId
and issuerId
are both listed on the same page where you create your private key.
Example
import { AppStoreConnectClient, AppStoreConnectOptions } from 'app-store-connect-api';
async function main() {
const options: AppStoreConnectOptions = {
issuerId: '<ISSUER_ID>',
privateKeyId: '<PRIVATE_KEY_ID>',
privateKey: '<PRIVATE_KEY>',
};
const client = new AppStoreConnectClient(options);
const { data: response, error } = await client.api.appsGetCollection({
query: {
limit: 10
}
});
if (error) {
console.error('Error fetching apps:', error);
} else {
const apps = response.data.map(app => ({
id: app.id,
name: app.attributes.name,
bundleId: app.attributes.bundleId
}));
console.log('Apps:', apps);
}
}
main();