-
Notifications
You must be signed in to change notification settings - Fork 184
Vonage Auth
Documentation / Vonage Auth
This is the Vonage Auth SDK for Node.js for creating authentication headers and signature for use with Vonage APIs. To use it you will need a Vonage account. Sign up for free at vonage.com.
We recommend using this package as part of the overall @vonage/server-sdk
package.
For full API documentation refer to developer.vonage.com.
We recommend using this SDK as part of the overall @vonage/server-sdk
package. Please see the main package for installation.
You can also use this SDK standalone if you only need access to just the Auth SDK.
npm install @vonage/auth
yarn add @vonage/auth
If you are using this SDK as part of the Vonage Server SDK, you can access it as the auth
property off of the client that you instantiate.
The SDK can be used standalone from the main Vonage Server SDK for Node.js if you only need to use the Auth API. All you need to do is require('@vonage/auth')
, and use the returned object to create your own client.
const { Auth } = require('@vonage/server-sdk');
// Or if standalone
const { Auth } = require('@vonage/auth');
const vonageAuth = new Auth({
apiKey: API_KEY,
apiSecret: API_SECRET,
applicationId: APP_ID,
privateKey: PRIVATE_KEY_PATH,
});
(async () => {
const basicHeader = vonageAuth.createBasicHeader();
console.log(basicHeader);
})()
Options is an object with the following properties:
-
apiKey
- API Key from Vonage API. IfapplicationId
andprivateKey
are present,apiKey
is optional. -
apiSecret
- API Secret from Vonage API. IfapplicationId
andprivateKey
are present,apiSecret
is optional. -
applicationId
- (optional) The Vonage API Application ID to be used when creating JWTs. -
privateKey
- (optional) The Private Key to be used when creating JWTs. You can specify the key as any of the following:- A Buffer containing the file contents.
- A String containing the path to the key file on disk.
- A String containing the key itself.
Run:
npm run test
Defined in: packages/auth/lib/enums/AlgroithmTypes.ts:8
Enumeration of supported algorithm types for HMAC hashing.
Ensure to select an algorithm that adheres to your security requirements and is supported by the API endpoint you're interacting with.
Enumeration Member | Value | Description | Defined in |
---|---|---|---|
md5hash
|
"MD5HASH" |
Represents the MD5 hash algorithm | packages/auth/lib/enums/AlgroithmTypes.ts:10 |
md5hmac
|
"MD5HMAC" |
Represents the HMAC-MD5 hash algorithm, which uses a secret key for hashing. | packages/auth/lib/enums/AlgroithmTypes.ts:13 |
sha1hmac
|
"SHA1HMAC" |
Represents the HMAC-SHA1 hash algorithm, which uses a secret key for hashing. | packages/auth/lib/enums/AlgroithmTypes.ts:16 |
sha256hmac
|
"SHA256HMAC" |
Represents the HMAC-SHA256 hash algorithm, which uses a secret key for hashing. | packages/auth/lib/enums/AlgroithmTypes.ts:19 |
sha512hmac
|
"SHA512HMAC" |
Represents the HMAC-SHA512 hash algorithm, which uses a secret key for hashing. | packages/auth/lib/enums/AlgroithmTypes.ts:22 |
Defined in: packages/auth/lib/auth.ts:45
Authentication class used for generating Authentication headers and query parameters.
This client is only available as a standalone client. It cannot be instantiated from the server-sdk package.
Create a standard authentication object.
import { Auth } from '@vonage/auth';
const auth = new Auth({
apiKey: VONAGE_API_KEY,
apiSecret: VONAGE_API_SECRET,
applicationId: VONAGE_APPLICATION_ID,
privateKey: VONAGE_APPLICATION_PRIVATE_KEY_PATH,
});
new Auth(opts?): Auth;
Defined in: packages/auth/lib/auth.ts:79
apiKey: string;
Defined in: packages/auth/lib/auth.ts:49
The API key used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
apiSecret: string;
Defined in: packages/auth/lib/auth.ts:54
The API secret used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional applicationId: null | string;
Defined in: packages/auth/lib/auth.ts:66
The application ID used in conjunction with the private key for JWT authentication. It may be omitted if using API key/secret or signature authentication. This value can be found in your Vonage Developer Dashboard.
jwtOptions: GeneratorOptions;
Defined in: packages/auth/lib/auth.ts:77
Options for generating JWTs, including the JWT issuer (application ID) and subject (user ID).
optional privateKey: null | string;
Defined in: packages/auth/lib/auth.ts:60
The private key used for JWT authentication. It can be provided as a string (read from a file) or as a Buffer (opened directly from a file). This key is downloaded when you create an application in your Vonage Developer Dashboard and may be omitted if using API key/secret or signature authentication.
optional signature: null | SignedHashParams;
Defined in: packages/auth/lib/auth.ts:72
An object containing parameters for signature authentication, including the secret and algorithm. It may be omitted if using API key/secret or JWT authentication.
createBasicHeader(): Promise<string>;
Defined in: packages/auth/lib/auth.ts:174
Generates a basic authentication header.
Promise
<string
>
- A promise that resolves with the generated basic authentication header.
- Thrown when the API key is missing.
- Thrown when the API secret is missing.
- Thrown when the API key is not a valid string.
- Thrown when the API secret is not a valid string.
Generate a basic authentication headers
const basicAuthHeader = await auth.createBasicHeader();
AuthInterface
.createBasicHeader
createBearerHeader(): Promise<string>;
Defined in: packages/auth/lib/auth.ts:209
Generates a bearer authentication header.
Promise
<string
>
- A promise that resolves with the generated bearer authentication header.
Generate a bearer authentication headers
const bearerAuthHeader = await auth.createBearerHeader();
AuthInterface
.createBearerHeader
createSignatureHash<T>(params): Promise<AuthSignedParams & T>;
Defined in: packages/auth/lib/auth.ts:248
Generates a signature hash for authentication, merging it with provided parameters.
T
Type of the parameters to merge with.
AuthSignedParams
& T
Parameters to merge with the generated signature hash.
Promise
<AuthSignedParams
& T
>
- A promise that resolves with the merged signature hash and parameters.
- Thrown when the API key is missing.
- Thrown when the API key is not a valid string.
- Thrown when the signature algorithm is missing.
- Thrown when the API secret is missing.
- Thrown when the API secret is not a valid string.
- Thrown when an invalid signature algorithm is provided.
Generate a signature hash
const signatureHash = await auth.createSignatureHash({
to: '15555555555',
from: '15555555556',
text: 'Hello from Vonage SMS API',
timestamp: '1516878400',
sig: 'a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6',
});
AuthInterface
.createSignatureHash
getQueryParams<T>(params?): Promise<AuthQueryParams & T>;
Defined in: packages/auth/lib/auth.ts:130
Generates query parameters for authentication, optionally merging with provided parameters.
T
AuthQueryParams
& T
Additional parameters to merge with the generated authentication query parameters.
Promise
<AuthQueryParams
& T
>
- A promise that resolves with the merged authentication query parameters.
- Thrown when the API key is missing.
- Thrown when the API secret is missing.
- Thrown when the API key is not a valid string.
- Thrown when the API secret is not a valid string.
Generate query parameters
const queryParams = await auth.getQueryParams();
Generate query parameters and merge with additional Parameters
const queryParams = await auth.getQueryParams({
to: '15555555555',
from: '15555555556',
text: 'Hello from Vonage SMS API'
});
Defined in: packages/auth/lib/errors/InvalidApiKeyError.ts:10
Error class representing a specific error scenario where an API key is provided but is not a valid string.
This error is thrown when an API request is made with an API key that does not meet the expected format or type (string).
Error
new InvalidApiKeyError(): InvalidApiKeyError;
Defined in: packages/auth/lib/errors/InvalidApiKeyError.ts:11
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/errors/InvalidApiSecretError.ts:10
Error class representing a specific error scenario where an API secret is provided but is not a valid string.
This error is thrown when an API request is made with an API secret that does not meet the expected format or type (string).
Error
new InvalidApiSecretError(): InvalidApiSecretError;
Defined in: packages/auth/lib/errors/InvalidApiSecretError.ts:11
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/errors/InvalidSignatureAlgroithmError.ts:10
Error class representing a specific error scenario where an invalid signature algorithm is provided.
This error is thrown when an API request is made with a signature algorithm that is not supported or recognized.
Error
new InvalidSignatureAlgorithmError(): InvalidSignatureAlgorithmError;
Defined in: packages/auth/lib/errors/InvalidSignatureAlgroithmError.ts:11
InvalidSignatureAlgorithmError
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/errors/MissingApiKeyError.ts:10
Error class representing a specific error scenario where an API key is missing in the request.
This error is thrown when an API request is made without providing the necessary API key for authentication.
Error
new MissingApiKeyError(): MissingApiKeyError;
Defined in: packages/auth/lib/errors/MissingApiKeyError.ts:11
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/errors/MissingApiSecretError.ts:10
Error class representing a specific error scenario where an API secret is missing in the request.
This error is thrown when an API request is made without providing the necessary API secret for authentication.
Error
new MissingApiSecretError(): MissingApiSecretError;
Defined in: packages/auth/lib/errors/MissingApiSecretError.ts:11
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/errors/MissingSignatureError.ts:12
Error class representing a specific error scenario where a signature algorithm is expected but missing in the request.
This error is thrown when an API request is made without providing the necessary signature algorithm for authentication.
Users should select a value from the AlgorithmTypes enum.
Error
new MissingSignatureError(): MissingSignatureError;
Defined in: packages/auth/lib/errors/MissingSignatureError.ts:13
Error.constructor
optional cause: unknown;
Defined in: node_modules/typescript/lib/lib.es2022.error.d.ts:24
Error.cause
message: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1077
Error.message
name: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1076
Error.name
optional stack: string;
Defined in: node_modules/typescript/lib/lib.es5.d.ts:1078
Error.stack
static optional prepareStackTrace: (err, stackTraces) => any;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:98
Optional override for formatting stack traces
Error
CallSite
[]
any
https://v8.dev/docs/stack-trace-api#customizing-stack-traces
Error.prepareStackTrace
static stackTraceLimit: number;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:100
Error.stackTraceLimit
static captureStackTrace(targetObject, constructorOpt?): void;
Defined in: packages/auth/node_modules/@types/node/globals.d.ts:91
Create .stack property on a target object
object
Function
void
Error.captureStackTrace
Defined in: packages/auth/lib/interfaces/AuthInterface.ts:10
Interface defining the methods for handling various authentication mechanisms and parameter generation.
optional apiKey: null | string;
Defined in: packages/auth/lib/types/AuthParams.ts:13
The API key used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional apiSecret: null | string;
Defined in: packages/auth/lib/types/AuthParams.ts:20
The API secret used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional applicationId: null | string;
Defined in: packages/auth/lib/types/AuthParams.ts:36
The application ID used in conjunction with the private key for JWT authentication. It may be omitted if using API key/secret or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional jwtOptions: GeneratorOptions;
Defined in: packages/auth/lib/types/AuthParams.ts:49
Options for generating JWTs, including the JWT issuer (application ID) and subject (user ID).
optional privateKey: null | string | Buffer;
Defined in: packages/auth/lib/types/AuthParams.ts:29
The private key used for JWT authentication. It can be provided as a string (read from a file) or as a Buffer (opened directly from a file). This key is downloaded when you create an application in your Vonage Developer Dashboard and may be omitted if using API key/secret or signature authentication.
optional signature: null | SignedHashParams;
Defined in: packages/auth/lib/types/AuthParams.ts:43
An object containing parameters for signature authentication, including the secret and algorithm. It may be omitted if using API key/secret or JWT authentication.
createBasicHeader(): Promise<string>;
Defined in: packages/auth/lib/interfaces/AuthInterface.ts:41
Asynchronously generates a basic authentication header.
Promise
<string
>
- A promise that resolves with the generated basic authentication header.
createBearerHeader(): Promise<string>;
Defined in: packages/auth/lib/interfaces/AuthInterface.ts:49
Asynchronously generates a bearer authentication header.
Promise
<string
>
- A promise that resolves with the generated bearer authentication header.
createSignatureHash<T>(params): Promise<AuthSignedParams & T>;
Defined in: packages/auth/lib/interfaces/AuthInterface.ts:33
Asynchronously generates a signature hash for authentication, merging it with provided parameters.
T
Type of the parameters to merge with.
T
Parameters to merge with the generated signature hash.
Promise
<AuthSignedParams
& T
>
- A promise that resolves with the merged signature hash and parameters.
getQueryParams<T>(params?): Promise<AuthQueryParams & T>;
Defined in: packages/auth/lib/interfaces/AuthInterface.ts:21
Asynchronously generates query parameters for authentication, optionally merging with provided parameters.
T
Type of the additional parameters to merge with.
T
Additional parameters to merge with the generated authentication query parameters.
Promise
<AuthQueryParams
& T
>
- A promise that resolves with the merged authentication query parameters.
type AuthParams = object;
Defined in: packages/auth/lib/types/AuthParams.ts:7
Represents the authentication parameters required for API requests.
optional apiKey: string | null;
Defined in: packages/auth/lib/types/AuthParams.ts:13
The API key used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional apiSecret: string | null;
Defined in: packages/auth/lib/types/AuthParams.ts:20
The API secret used to authenticate requests. It may be omitted if using JWT or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional applicationId: string | null;
Defined in: packages/auth/lib/types/AuthParams.ts:36
The application ID used in conjunction with the private key for JWT authentication. It may be omitted if using API key/secret or signature authentication. This value can be found in your Vonage Developer Dashboard.
optional jwtOptions: GeneratorOptions;
Defined in: packages/auth/lib/types/AuthParams.ts:49
Options for generating JWTs, including the JWT issuer (application ID) and subject (user ID).
optional privateKey: string | Buffer | null;
Defined in: packages/auth/lib/types/AuthParams.ts:29
The private key used for JWT authentication. It can be provided as a string (read from a file) or as a Buffer (opened directly from a file). This key is downloaded when you create an application in your Vonage Developer Dashboard and may be omitted if using API key/secret or signature authentication.
optional signature: SignedHashParams | null;
Defined in: packages/auth/lib/types/AuthParams.ts:43
An object containing parameters for signature authentication, including the secret and algorithm. It may be omitted if using API key/secret or JWT authentication.
type AuthQueryParams = object;
Defined in: packages/auth/lib/types/AuthQueryParams.ts:9
Represents the query parameters used for API request authentication.
This method of authentication, using API credentials in query parameters, is outdated and not recommended due to security concerns. Consider using more secure authentication methods, such as JWT or signature authentication.
api_key: string;
Defined in: packages/auth/lib/types/AuthQueryParams.ts:14
The API key used to authenticate requests. This value can be found in your Vonage Developer Dashboard.
api_secret: string;
Defined in: packages/auth/lib/types/AuthQueryParams.ts:20
The API secret used to authenticate requests. This value can also be found in your Vonage Developer Dashboard.
type AuthSignedParams = object;
Defined in: packages/auth/lib/types/AuthSignedParams.ts:12
Represents the parameters used for HMAC signature-based API request authentication.
Note: Not all API endpoints support this method of authentication. Please refer to the specific API documentation to determine if HMAC signature authentication is supported.
For more information on signing requests, visit: https://developer.vonage.com/en/getting-started/concepts/signing-messages
api_key: string;
Defined in: packages/auth/lib/types/AuthSignedParams.ts:17
The API key used to authenticate requests. This value can be found in your Vonage Developer Dashboard.
optional sig: string;
Defined in: packages/auth/lib/types/AuthSignedParams.ts:24
The generated signature, used to verify the authenticity of the request. It's typically generated by hashing the request parameters with a secret key.
optional timestamp: string;
Defined in: packages/auth/lib/types/AuthSignedParams.ts:30
The UNIX timestamp when the request is made. Utilized to prevent replay attacks by making each signature unique to a specific time window.
type SignedHashParams = object;
Defined in: packages/auth/lib/types/SignedHashParams.ts:7
Represents the parameters required for generating a signed hash.
algorithm: AlgorithmTypes;
Defined in: packages/auth/lib/types/SignedHashParams.ts:18
Specifies the algorithm type used for signing the hash. Utilizes the
algorithm types defined in the AlgorithmTypes
enum.
secret: string;
Defined in: packages/auth/lib/types/SignedHashParams.ts:12
The secret key used to sign the hash, ensuring the integrity and authenticity of the message. It should be kept private and secure.