:warning: THIS PROJECT IS NOT OFFICIALLY SUPPORTED! ALL CODE IN HERE IS
IN DEVELOPMENT AND LIKELY TO CHANGE WITHOUT WARNING. USE AT YOUR OWN
RISK. :warning:
Wire
This repository is part of the source code of Wire. You can find more information at wire.com or by contacting opensource@wire.com.
You can find the published source code at github.com/wireapp.
For licensing information, see the attached LICENSE file and the list of third-party licenses at wire.com/legal/licenses/.
Wire API Client
Wire for Web's API client.
Installation
yarn add @wireapp/api-client
Usage
Browser
Node.js
Development
Command-line test run
#!/bin/bash
EMAIL = "name@email.com";
HANDLE = "username";
PASSWORD = "secret";
node dist/index.js --e="$EMAIL" --p="$PASSWORD"
node dist/index.js --h="$HANDLE" --p="$PASSWORD"
npm run dist
node dist/index.js --e="name@email.com" --p="password"