1.11.0 • Published 2 months ago

@vonage/verify2 v1.11.0

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

Vonage Verify SDK for Node.js

GitHub Workflow Status Codecov Latest Release Contributor Covenant License

This is the Vonage Verify (for version 2) 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/verify2

With Yarn

yarn add @vonage/verify2

Usage

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

const { Auth } = require('@vonage/auth')
const { Verify2 } = require('@vonage/verify2')

const credentials = new Auth({
  applicationId: APP_ID,
  privateKey: PRIAVTE_KEY,
})
const options = {}
const verifyClient = new Verify2(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 verifyClient.checkCode(VERIFY_REQUEST_ID, CODE)

vonage.verify2
  .checkCode(VERIFY_REQUEST_ID, CODE)
  .then((resp) => console.log(resp))
  .catch((err) => console.error(err))

Testing

Run:

npm run test
1.11.0

2 months ago

1.10.1

3 months ago

1.10.0

3 months ago

1.9.2

4 months ago

1.9.1

4 months ago

1.9.0

4 months ago

1.7.3

8 months ago

1.7.2

8 months ago

1.8.0

7 months ago

1.7.1

9 months ago

1.6.0

9 months ago

1.5.0

9 months ago

1.4.0

11 months ago

1.3.2

11 months ago

1.3.1

12 months ago

1.3.0

12 months ago

1.2.0

1 year ago

1.1.0

1 year ago