trysoftwacloudapi
trysoftwacloudapi
is a Node.js library for creating bots and sending/receiving messages using the Whatsapp Cloud API.
Contains built-in Typescript declarations.
Install
Using npm:
npm i trysoftwacloudapi
Using yarn:
yarn add trysoftwacloudapi
Usage
import { createBot } from 'trysoftwacloudapi';
(async () => {
try {
const from = 'YOUR_WHATSAPP_PHONE_NUMBER_ID';
const token = 'YOUR_TEMPORARY_OR_PERMANENT_ACCESS_TOKEN';
const to = 'PHONE_NUMBER_OF_RECIPIENT';
const webhookVerifyToken = 'YOUR_WEBHOOK_VERIFICATION_TOKEN';
const bot = createBot(from, token);
const result = await bot.sendText(to, 'Hello world');
await bot.startExpressServer({
webhookVerifyToken,
});
bot.on('message', async (msg) => {
console.log(msg);
if (msg.type === 'text') {
await bot.sendText(msg.from, 'Received your text message!');
} else if (msg.type === 'image') {
await bot.sendText(msg.from, 'Received your image!');
}
});
} catch (err) {
console.log(err);
}
})();
Documentation
Examples
Sending other message types (read more in API reference):
const result = await bot.sendImage(to, 'https://picsum.photos/200/300', {
caption: 'Random jpg',
});
const result = await bot.sendLocation(to, 40.7128, -74.0060, {
name: 'New York',
});
const result = await bot.sendTemplate(to, 'hello_world', 'en_us');
Customized express server (read more below):
import cors from 'cors';
const bot = createBot(...);
await bot.startExpressServer({
webhookVerifyToken: 'my-verification-token',
port: 3000,
webhookPath: `/custom/webhook`,
useMiddleware: (app) => {
app.use(cors()),
},
});
Listening to other message types (read more in API reference):
const bot = createBot(...);
await bot.startExpressServer({ webhookVerifyToken });
bot.on('text', async (msg) => {
console.log(msg);
await bot.sendText(msg.from, 'Received your text!');
});
bot.on('image', async (msg) => {
console.log(msg);
await bot.sendText(msg.from, 'Received your image!');
});
Notes
1. Verifying your Webhook URL
By default, the endpoint for whatsapp-related requests will be: /webhook/whatsapp
.
This means that locally, your URL will be: http://localhost/webhook/whatsapp
.
You can use a reverse proxy to make the server publicly available. An example of this is ngrok.
You can read more on the Tutorial.
2. Handling incoming messages
The implementation above creates an express server for you through which it listens to incoming messages. There may be plans to support other types of server in future (PRs are welcome! :)).
You can change the port as follows:
await bot.startExpressServer({
port: 3000,
});
By default, all requests are handled by the POST|GET /webhook/whatsapp
endpoint. You can change this as below:
await bot.startExpressServer({
webhookPath: `/custom/webhook`,
});
Note: Remember the leading /
; i.e. don't use custom/whatsapp
; instead use /custom/whatsapp
.
If you are already running an express server in your application, you can avoid creating a new one by using it as below:
import express from 'express';
const app = express();
...
await bot.startExpressServer({
app,
});
To add middleware:
import cors from 'cors';
await bot.startExpressServer({
useMiddleware: (app) => {
app.use(cors()),
},
});
Full customized setup:
import cors from 'cors';
await bot.startExpressServer({
webhookVerifyToken: 'my-verification-token',
port: 3000,
webhookPath: `/custom/webhook`,
useMiddleware: (app) => {
app.use(cors()),
},
});
3. on()
listener
This library uses a single process pubsub, which means that it won't work well if you're deploying on multi-instance clusters, e.g. distributed Kubernetes clusters. In future, there may be plans to export/support a pubsub reference which can be stored in extenal storage, e.g. redis (PRs are welcome! :)).
Development
npm i
npm run lint
npm run ts-check
npm t
npm run build
Local Testing
Create a .env file in the root of your project:
FROM_PHONE_NUMBER_ID=""
ACCESS_TOKEN=""
VERSION=""
TO=""
WEBHOOK_VERIFY_TOKEN=""
WEBHOOK_PATH=""