npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

nubitel-whatsapp-api

v1.1.6

Published

Node.js Whatsapp API

Downloads

6

Readme

Node.js Whatsapp API

Based on the Whatsapp Platform Sample

Install

npm i nubitel-whatsapp-api --save

Usage

See Setup for more details about setting up the bot/page.

Example

Get User Profile - User Profile API

const whatsappAPI = require("nubitel-whatsapp-api");
const whatsapp = new whatsappAPI().Messenger({
	appId: "",
	pageId: "",
	analyticsLogLevel: "",
	appSecret: "",
	pageAccessToken: "",
	validationToken: "",
});

var pageScopedUserID = "...";

whatsapp.getUserProfile(pageScopedUserID, (err, resp) => {
	if (err) {
		console.error(recipientId, "Sorry, looks like the backend is down :-(");
	} else {
		console.log(JSON.parse(resp));
	}
});

Send Generic Template Message - Generic Template

whatsapp.sendTemplateMessage(pageScopeUserID, [
	{
		title: "Welcome to Peter's Hats",
		image_url: "https://petersfancybrownhats.com/company_image.png",
		subtitle: "We've got the right hat for everyone.",
		default_action: {
			type: "web_url",
			url: "https://peterssendreceiveapp.ngrok.io/view?item=103",
			whatsapp_extensions: true,
			webview_height_ratio: "tall",
			fallback_url: "https://peterssendreceiveapp.ngrok.io/",
		},
		buttons: [
			{
				type: "web_url",
				url: "https://petersfancybrownhats.com",
				title: "View Website",
			},
			{
				type: "postback",
				title: "Start Chatting",
				payload: "DEVELOPER_DEFINED_PAYLOAD",
			},
		],
	},
]);

Using Webhook Handler to receive Facebook Messenger Events - Webhook Reference

The example folder contains a sample app

npm install
cd example
export MESSENGER_ANALYTICS_LOG_LEVEL = "2";
export MESSENGER_APP_ID = "--yours--";
export MESSENGER_PAGE_ID = "--yours--";
export MESSENGER_APP_SECRET="--yours--"
export MESSENGER_VALIDATION_TOKEN="--yours--"
export MESSENGER_PAGE_ACCESS_TOKEN="--yours--"
node server

Or use this in your existing code

const express = require("express");

var ignores = ["/some-url/to-ignore"];
var verifySignature = true;

const whatsappAPI = require("nubitel-whatsapp-api");
const whatsapp = new whatsappAPI().Messenger({
	appId: "",
	pageId: "",
	analyticsLogLevel: "",
	appSecret: "",
	pageAccessToken: "",
	validationToken: "",
});
const webhookHandler = new whatsappAPI().Webhook(
	whatsapp,
	{
		receivedAuthentication: function (event) {
			console.log("receivedAuthentication", event);
		},
		handleMessage: function (event) {
			console.log("handleMessage", event);
			whatsapp.sendTextMessage(event.sender.id, JSON.stringify(event));
		},
		receivedDeliveryConfirmation: function (event) {
			console.log("receivedDeliveryConfirmation", event);
		},
		receivedPostback: function (event) {
			console.log("receivedPostback", event);
		},
		receivedMessageRead: function (event) {
			console.log("receivedMessageRead", event);
		},
		doLinking: function (event) {
			console.log("doLinking", event);
		},
		doUnlinking: function (event) {
			console.log("doUnlinking", event);
		},
	},
	verifySignature,
	ignores,
	express.Router()
);

var app = express();
app.set("port", process.env.PORT || 3000);
app.use(express.static("public"));

app.use("/fb", webhookHandler);
app.listen(app.get("port"), function () {
	console.log("Node app is running in http mode on port", app.get("port"));
});

Analytics Events

You can now send analytics events through the following API (See App Events with Bots for Messenger - Logging Custom Events and App Events API for more details about the event types)

For performace reasons if you would like to throttle the events that you would like to send/track, you can use the env variable

export MESSENGER_ANALYTICS_LOG_LEVEL = "2";

to control the log levels. Set that to

| Level | Value | Description | | -------- | ----- | ----------------------------------- | | None | 99 | Don't send any analytics events | | Critical | 2 | Send only critical analytics events | | Verbose | 1 | Send all analytics events |

The asynchronous callback from the analyticsEvent call would be either

{
	"success": true
}

if the event was successfully accepted or

{
	"skip": true
}

if the event was skipped due lower log levels

  • Custom Event
whatsapp.analyticsEvent(
	whatsappapi.ANALYTICS_LEVEL_VERBOSE,
	event.sender.id,
	() => {
		return whatsapp.buildAnalyticsEvent("fb_mobile_verbose_event");
	},
	(err, resp) => {
		whatsapp.sendTextMessage(event.sender.id, JSON.stringify(err ? err : resp));
	}
);
  • Standard Purchase Event
whatsapp.analyticsEvent(
	whatsappapi.ANALYTICS_LEVEL_CRITICAL,
	event.sender.id,
	() => {
		return whatsapp.buildAnalyticsEvent("fb_mobile_purchase", { _valueToSum: 9.99, fb_currency: "USD" });
	},
	(err, resp) => {
		whatsapp.sendTextMessage(event.sender.id, JSON.stringify(err ? err : resp));
	}
);
  • Standard Add Cart Event Using quickAnalytics
whatsapp.quickAnalytics(whatsappapi.ANALYTICS_LEVEL_CRITICAL, event.sender.id, "fb_mobile_add_to_cart", {
	fb_content_type: "blah blah blah",
	fb_content_id: "123456789",
	_valueToSum: 9.99,
	fb_currency: "USD",
});