Skip to content

Instantly share code, notes, and snippets.

@artembykov
Last active October 20, 2017 12:51
Show Gist options
  • Save artembykov/8703a7c5cd43b70519f1024279c3beec to your computer and use it in GitHub Desktop.
Save artembykov/8703a7c5cd43b70519f1024279c3beec to your computer and use it in GitHub Desktop.
async function run() {
const application = {
secure: true,
host: 'developer.zoomdata.com',
port: 443,
path: '/zoomdata-2.6'
};
const credentials = {
key: 'KVKWiD8kUl'
};
const client = await ZoomdataSDK.createClient({ application, credentials });
console.log('Client ready');
}
run().catch(console.error);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment