1.2.0 • Published 4 months ago

@vonage/media v1.2.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
4 months ago

Vonage Media SDK for Node.js

GitHub Workflow Status Codecov Latest Release Contributor Covenant License

This is the Vonage Media SDK for Node.js for use with Vonage APIs. To use it you will need a Vonage account. Sign up for free at vonage.com.

For full API documentation refer to developer.vonage.com.

Installation

With NPM

npm install @vonage/media

With Yarn

yarn add @vonage/media

Usage

Unlike the other SDK's this package is not included in the Vonage Server SDK for Node.js

const { Auth } = require('@vonage/auth')
const { Media } = require('@vonage/media')

const credentials = new Auth({
  applicationId: APP_ID,
  privateKey: PRIAVTE_KEY,
})
const options = {}
const mediaClient = new Media(credentials, options)

Where credentials is any option from @vonage/auth, and options is any option from @vonage/server-client

Promises

Most methods that interact with the Vonage API uses Promises. You can either resolve these yourself, or use await to wait for a response.

const resp = await mediaClient.listMediaItem()

mediaClient
  .listMedia()
  .then((resp) => console.log(resp))
  .catch((err) => console.error(err))

Testing

Run:

npm run test
1.2.0

4 months ago

1.1.0

7 months ago