Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 541 Bytes

README.md

File metadata and controls

22 lines (15 loc) · 541 Bytes

Fire Store Tools

A simple NodeJS client that uploads APKs to the Amazon Fire Store.

Documentation for the API: https://s3-us-west-1.amazonaws.com/devportal-reference-docs/appsubapi/swagger-en/index.html

Usage

import { FireStoreClient } from 'fire-store-client';

const clientId = '...';
const clientSecret = '...'
const appId = '...';
const apkFilePath = '...';


async function main() {
    const client = new FireStoreClient(clientId, clientSecret);
    const res = await client.uploadApk(appId, apkFilePath);
}