Skip to content

KanoComputing/fire-store-client

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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);
}

About

Upload APKs to Amazon's Fire Store

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published