Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
nubitel-messenger-api
Advanced tools
Based on the Messenger Platform Sample
npm i nubitel-messenger-api --save
See Setup for more details about setting up the bot/page.
const messengerAPI = require("nubitel-messenger-api");
const messenger = new messengerAPI().Messenger({
appId: "",
pageId: "",
analyticsLogLevel: "",
appSecret: "",
pageAccessToken: "",
validationToken: "",
});
var pageScopedUserID = "...";
messenger.getUserProfile(pageScopedUserID, (err, resp) => {
if (err) {
console.error(recipientId, "Sorry, looks like the backend is down :-(");
} else {
console.log(JSON.parse(resp));
}
});
messenger.sendGenericMessage(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",
messenger_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",
},
],
},
]);
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 messengerAPI = require("nubitel-messenger-api");
const messenger = new messengerAPI().Messenger({
appId: "",
pageId: "",
analyticsLogLevel: "",
appSecret: "",
pageAccessToken: "",
validationToken: "",
});
const webhookHandler = new messengerAPI().Webhook(
messenger,
{
receivedAuthentication: function (event) {
console.log("receivedAuthentication", event);
},
handleMessage: function (event) {
console.log("handleMessage", event);
messenger.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"));
});
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
messenger.analyticsEvent(
messengerapi.ANALYTICS_LEVEL_VERBOSE,
event.sender.id,
() => {
return messenger.buildAnalyticsEvent("fb_mobile_verbose_event");
},
(err, resp) => {
messenger.sendTextMessage(event.sender.id, JSON.stringify(err ? err : resp));
}
);
messenger.analyticsEvent(
messengerapi.ANALYTICS_LEVEL_CRITICAL,
event.sender.id,
() => {
return messenger.buildAnalyticsEvent("fb_mobile_purchase", { _valueToSum: 9.99, fb_currency: "USD" });
},
(err, resp) => {
messenger.sendTextMessage(event.sender.id, JSON.stringify(err ? err : resp));
}
);
messenger.quickAnalytics(messengerapi.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",
});
FAQs
Node.js Facebook Messenger API
The npm package nubitel-messenger-api receives a total of 0 weekly downloads. As such, nubitel-messenger-api popularity was classified as not popular.
We found that nubitel-messenger-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.