https://github.com/kanocomputing/fire-store-client
Upload APKs to Amazon's Fire Store
https://github.com/kanocomputing/fire-store-client
Last synced: 8 months ago
JSON representation
Upload APKs to Amazon's Fire Store
- Host: GitHub
- URL: https://github.com/kanocomputing/fire-store-client
- Owner: KanoComputing
- Created: 2019-11-15T15:36:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T09:04:36.000Z (over 3 years ago)
- Last Synced: 2025-03-03T01:41:57.076Z (over 1 year ago)
- Language: TypeScript
- Size: 356 KB
- Stars: 1
- Watchers: 5
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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
```typescript
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);
}
```