This article shows you how to send an image to a WhatsApp group in Node.js (JavaScript).
To send an image in to a WhatsApp group in Node.js
, do this:
- First, learn how to send a simple text message on the official site.
- With the above knowledge, you can now download our sample code.
- Locate the file
nodejs/send-image-group.js
.This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters#!/usr/bin/env node var http = require('http'); var fs = require('fs'); // TODO Put down your own client ID and secret here: var instanceId = "YOUR_OWN_GATEWAY_INSTANCE_ID"; var clientId = "YOUR_OWN_CLIENT_ID"; var clientSecret = "YOUR_OWN_SECRET_ID"; var jsonPayload = JSON.stringify({ group_name: "YOUR UNIQUE GROUP NAME HERE", // FIXME image: fs.readFileSync("../assets/cute-girl.jpg").toString('base64'), // FIXME caption: "Lovely Gal" // FIXME }); var options = { hostname: "api.whatsmate.net", port: 80, path: "/v3/whatsapp/group/image/message/" + instanceId, method: "POST", headers: { "Content-Type": "application/json", "X-WM-CLIENT-ID": clientId, "X-WM-CLIENT-SECRET": clientSecret, "Content-Length": Buffer.byteLength(jsonPayload) } }; var request = new http.ClientRequest(options); request.end(jsonPayload); request.on('response', function (response) { console.log('Heard back from WhatsMate WhatsApp Gateway:\n'); console.log('Status code: ' + response.statusCode); response.setEncoding('utf8'); response.on('data', function (chunk) { console.log(chunk); }); }); - Study the
Node.js
source code and customize the TODO/FIXME lines.- Among other things, you must name your group creatively. Otherwise, the group may not receive the message.
- Change to the directory containing the script:
cd nodejs
- Run the script to send your group the first image:
./send-image-group.js
Happy coding :)