symphony-api
A node.js symphony api implementation
Installation
To use the library, run this command in your project's root path.
npm -install symphony-api --save
Getting Started
Example
var symphonyApi = ;var fs = ; var urls = keyUrl: 'https://foundation-dev-api.symphony.com/keyauth' sessionUrl: 'https://foundation-dev-api.symphony.com/sessionauth' agentUrl: 'https://foundation-dev.symphony.com/agent' podUrl: 'https://foundation-dev.symphony.com/pod'; var cert = fs;var key = fsvar passphrase = 'this is my passphrase' var api = symphonyApi;apiapi apistream ; );
Using the API
The api is encapsulated into a single object that is created using symphonyApi.create();
. Once
authenticated, additional functionality is made available through members of this main object. For instance,
api.message.send(streamId, 'text', 'hello world')
will send the text 'hello world' to the stream streamId.