Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

whatsapp-nodejs-sdk

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

whatsapp-nodejs-sdk

A Node.js SDK for the WhatsApp Cloud API, allowing easy integration of WhatsApp messaging into your applications.

  • 1.0.9
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

WhatsApp Node.js SDK

A Node.js SDK for the WhatsApp Cloud API, allowing easy integration of WhatsApp messaging into your applications.

Installation

Install the SDK via npm:

npm install whatsapp-nodejs-sdk

Usage

Initialize the WhatsApp Client

Before using the SDK, initialize the WhatsAppClient with your phone number ID and access token. Get it from Meta Developers.

const { WhatsAppClient } = require('whatsapp-nodejs-sdk');

const whatsappClient = new WhatsAppClient(
  "YOUR_PHONE_NUMBER_ID",
  "YOUR_ACCESS_TOKEN"
);

Example Usage

1. Sending an Image

Send an image to the user with an introductory message:

whatsappClient.sendMediaMessage(
  "258841234567", // recipient's phone number
  "image",        // media type
  "https://www.w3schools.com/w3css/img_lights.jpg", // media URL
  "Hello! I'm Quick Top Up Bot, here to help you get top-ups for your favorite games quickly and easily." // caption
);
2. Sending a List Message

Send an interactive message with a list of options for the user to select from:

whatsappClient.sendInteractiveMessage(
  "258841234567", 
  "list",
  "Open the list below to explore some available options",
  [
    {
      title: "Choose an option",
      rows: [
        { id: "OP_1", title: "Buy Top-Ups", description: "Get top-ups for your favorite games." },
        { id: "OP_2", title: "FAQ", description: "Find answers to frequently asked questions." },
        { id: "OP_3", title: "Tutorial", description: "Learn how to use the bot step by step." },
      ]
    },
  ],
);
3. Sending a Buttons Message

Send an interactive message with buttons for the user to select from:

whatsappClient.sendInteractiveMessage(
  "258841234567", 
  "button",
  "You chose *500 MZN* to get *1000 Diamonds* in Free Fire! \n\nSelect a payment method:",
  [
    { id: "MPESA", title: "M-Pesa" },
    { id: "EMOLA", title: "E-Mola" },
  ],
);
4. Send a simple text message

Send a simple text message to the user:

whatsappClient.sendTextMessage(
  "258841234567", 
  "Hello! I'm Quick Top Up Bot, here to help you get top-ups for your favorite games quickly and easily."
);

FAQs

Package last updated on 11 Oct 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc